forked from OZ-01-Team3/oz-main_project-be
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
86 lines (73 loc) · 1.8 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[tool.poetry]
name = "oz-main-project-be"
version = "0.1.0"
description = ""
authors = ["yyysolhhh <solbaram37@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
django = "^5.0.4"
django-environ = "^0.11.2"
djangorestframework = "^3.15.1"
django-extensions = "^3.2.3"
drf-spectacular = "^0.27.2"
psycopg2-binary = "^2.9.9"
pillow = "^10.3.0"
gunicorn = "^22.0.0"
django-redis = "^5.4.0"
channels = "^4.1.0"
djangorestframework-simplejwt = "^5.3.1"
django-allauth = "^0.62.1"
dj-rest-auth = "^6.0.0"
boto3 = "^1.34.99"
django-storages = "^1.14.3"
django-cors-headers = "^4.3.1"
django-cleanup = "^8.1.0"
channels-redis = "^4.2.0"
uvicorn = {extras = ["standard"], version = "^0.29.0"}
cryptography = "^42.0.7"
daphne = "^4.1.2"
django-stubs-ext = "^5.0.0"
django-filter = "^24.2"
whitenoise = "^6.6.0"
requests = "^2.32.0"
sentry-sdk = {extras = ["django"], version = "^2.3.1"}
locust = "^2.28.0"
locust-plugins = {extras = ["websocket"], version = "^4.4.3"}
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
isort = "^5.13.2"
mypy = "^1.10.0"
django-stubs = "^5.0.0"
coverage = "^7.5.0"
django-debug-toolbar = "^4.3.0"
ipython = "^8.24.0"
djangorestframework-stubs = "^3.15.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.mypy]
plugins = ["mypy_django_plugin.main"]
python_version = 3.12
strict = true
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "*.migrations.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "manage"
ignore_errors = true
[tool.django-stubs]
django_settings_module = "config.settings.settings"
[tool.coverage.run]
omit = ["*/migrations/*"]
[tool.locust]
expect-workers = 4
host = "http://localhost:8000"
user = 100
spawn-rate = 5
run-time = "5m"