-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (73 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
78 lines (73 loc) · 1.73 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[project]
name = "PasarGuard"
version = "2.2.0"
description = "Unified GUI Censorship Resistant Solution"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"apscheduler>=3.11.1",
"Deprecated==1.2.13",
"Jinja2>=3.1.6",
"PyJWT>=2.10.1",
"PyYAML>=6.0.2",
"alembic>=1.15.2",
"bcrypt==5.0.0",
"click>=8.3.1",
"commentjson==0.9.0",
"cryptography==46.0.5",
"fastapi>=0.124.0",
"jdatetime>=5.2.0",
"psutil>=7.2.2",
"pydantic>=2.12.5",
"python-dateutil>=2.8.2",
"python-decouple>=3.6",
"python-dotenv>=0.21.1",
"python-multipart>=0.0.7",
"qrcode>=8.1",
"rich>=14.2.0",
"uvicorn==0.40.0",
"sse-starlette>=3.0.3",
"httpx>=0.28.1",
"packaging>=24.2",
"sqlalchemy[asyncio]>=2.0.44",
"aiosqlite>=0.21.0",
"asyncpg>=0.31.0",
"asyncmy>=0.2.10; sys_platform != 'win32'",
"aiocache>=0.12.3",
"textual[syntax]>=2.1.2",
"aiogram>=3.23.0",
"aiohttp-socks>=0.10.1",
"uvloop>=0.22.1; sys_platform != 'win32'",
"aiorwlock>=1.5.0",
"typer>=0.20.0",
"pasarguard-node-bridge>=0.4.2",
"pip-system-certs>=5.3",
"psycopg[binary]>=3.3.2",
"pymysql>=1.1.2",
"nats-py>=2.12.0",
]
[tool.ruff]
line-length = 120
indent-width = 4
respect-gitignore = true
exclude = ["app/db/migrations"]
fix = true
[tool.ruff.lint]
fixable = ["ALL"]
[tool.ruff.lint.isort]
combine-as-imports = true
[tool.ruff.format]
quote-style = "double"
line-ending = "auto"
docstring-code-format = false
docstring-code-line-length = "dynamic"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=0.26.0",
"pytest-watch>=4.2.0",
"ruff>=0.11.6",
"sqlalchemy-utils>=0.41.2",
"textual-dev>=1.8.0",
"watchfiles>=1.0.4",
]