-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (68 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
78 lines (68 loc) · 1.59 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 = "df-wallet-auth-service"
dynamic = ["version"]
description = "Developers Foundry Wallet Auth Service"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"django-cors-headers>=4.7.0",
"django>=5.1.6",
"python-decouple>=3.8",
"pymongo>=4.11.1",
"django-mongodb-backend>=5.1.0b0",
"psycopg2-binary>=2.9.10",
"redis>=5.2.1",
"hiredis>=3.1.0",
"svcs>=25.1.0",
"bcrypt>=4.3.0",
"faker>=36.1.1",
"pydantic[email]>=2.10.6",
"django-ninja>=1.3.0",
"pyjwt>=2.10.1",
"faststream[rabbit]>=0.5.39",
"starlette>=0.46.2",
"django-extensions>=4.1",
"uvicorn>=0.34.2",
]
[dependency-groups]
dev = [
"django-stubs>=5.1.3",
"django-types>=0.20.0",
"pre-commit>=4.1.0",
"pyright[nodejs]>=1.1.397",
"ruff>=0.9.6",
]
[tool.setuptools.dynamic]
version = { attr = "src.__version__" }
[tool.ruff]
fix = true
extend-exclude = ["manage.py", "**/migrations/*.py"]
[tool.ruff.lint]
extend-select = [
"UP", # pyupgrade
"I", # isort
"DJ", # djangolint
"T20", # flake8-print
"ANN", # flake8-annotations
"ASYNC", # flake8-async
"S", # flake8-bandit
"ICN", # flake8-import-convention
"RUF", # ruff
"ERA", # eradicate
# "D", # pydocstyle
]
ignore = ["DJ001"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.isort]
case-sensitive = true
length-sort = true
[tool.pyright]
include = ["src"]
exclude = ["**/migrations"]
venvPath = "."
venv = ".venv"
reportTypedDictNotRequiredAccess = "none"
reportIncompatibleVariableOverride = "information"
[tool.django-stubs]
django_settings_module = "src.config.settings"