-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (43 loc) · 1023 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[project]
name = "nexus"
version = "2.1.0"
description = "Backend API for Z3R0"
authors = [
{name = "null2264", email = "palembani@gmail.com"}
]
license = {text = "MPL-2.0"}
requires-python = ">=3.10"
dependencies = [
"fastapi==0.100.0",
"discord.py>=2.2",
"pyzmq==25.0.0",
"websockets>=10.4",
"uvicorn>=0.20.0",
"python-dotenv==1.0.0",
"itsdangerous>=2.1.2",
"oauthlib>=3.2.2",
"beautifulsoup4>=4.12.2",
"Pillow>=10.0.0",
"pydantic>=1.10,<=2.0",
"redis>=4.6.0",
"cryptography>=41.0.2",
]
[tool.pdm.scripts]
start = "uvicorn nexus.app:app --reload"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.black]
line-length = 125
skip-string-normalization = true
[tool.isort]
profile = "black"
multi_line_output = 3
lines_after_imports = 2
[tool.pyright]
reportUnnecessaryTypeIgnoreComment = "warning"
reportUnusedImport = "error"
pythonVersion = "3.9"
typeCheckingMode = "basic"
[tool.pylint.main]
extension-pkg-allow-list = ["pydantic"]