-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (57 loc) · 1.55 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[tool.poetry]
name = "pufferblow"
version = "0.0.1-beta"
description = "The official API for PufferBlow"
authors = ["ramsy0dev <[email protected]>"]
license = "GPL-3.0"
readme = "README.md"
packages = [
{include = "pufferblow"},
{include = "docs"}
]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.115.8"
typer = "^0.15.1"
rich = "^13.9.4"
uvicorn = "^0.34.0"
pycryptodome = "^3.21.0"
loguru = "^0.7.3"
pytz = "^2025.1"
psycopg2-binary = "^2.9.10"
pytest = "^8.3.4"
sqlalchemy = "^2.0.36"
websockets = "^15.0"
httpx = "^0.28.1"
sphinx = "^8.1.3"
sphinx-book-theme = "^1.1.2"
sphinx-autobuild = "^2024.10.3"
sphinx-favicon = "^1.0.1"
myst-parser = "^4.0.0"
sqlalchemy-utils = "^0.41.2"
orjson = "^3.10.15"
basedpyright = "^1.26.0"
pymemcache = "^4.0.0"
cryptography = "^44.0.0"
textual = "^2.1.1"
textual-dev = "^1.7.0"
bcrypt = "^4.3.0"
[tool.poetry.group.dev.dependencies]
loguru = "^0.7.3"
gunicorn = "^23.0.0"
[tool.poetry.plugins."console_scripts"]
pufferblow = "pufferblow:run"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pyprojectx]
main = ["pdm==2.12.4"] # installs pdm to your project instead of globally
[tool.pdm.dev-dependencies] # or the poetry equivalent
dev = [
"basedpyright", # you can pin the version here if you want, or just rely on the lockfile
]
[tool.basedpyright]
# many settings are not enabled even in strict mode, which is why basedpyright includes an "all" option
# you can then decide which rules you want to disable
typeCheckingMode = "standard"
reportMissingSuperCall = false