-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (56 loc) · 1.3 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
65
66
67
68
69
70
[tool.poetry]
name = "dosirock"
version = "0.1.0"
description = ""
authors = ["Gomnonix <lee20481997@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
django = "^5.0.7"
gunicorn = "^22.0.0"
psycopg2-binary = "^2.9.9"
djangorestframework = "^3.15.2"
drf-spectacular = "^0.27.2"
python-dotenv = "^1.0.1"
requests = "^2.32.3"
djangorestframework-simplejwt = "^5.3.1"
isort = "^5.13.2"
mypy = "^1.11.1"
pyjwt = "^2.8.0"
django-cors-headers = "^4.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
isort = "^5.13.2"
mypy = "^1.10.0"
django-stubs = "^5.0.2"
djangorestframework-stubs = "^3.15.0"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.mypy]
plugins = ["mypy_django_plugin.main"]
python_version = 3.12
ignore_missing_imports = true
strict = true
follow_imports = "silent"
[[tool.mypy.overrides]]
module = "*.migrations.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "manage"
ignore_errors = true
[[tool.mypy.overrides]]
module = "*.settings.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "*.tests.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "*.serializers.*"
ignore_errors = true
[tool.django-stubs]
django_settings_module = "dosirock.settings"