-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (42 loc) · 1.06 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
[tool.poetry]
name = "answerking-python"
version = "0.1.0"
description = ""
authors = []
readme = "README.md"
packages = [{include = "answerking_app"}]
[tool.poetry.dependencies]
python = "^3.10"
django = "^4.2"
djangorestframework = "^3.14.0"
mysqlclient = "^2.1.1"
django-cors-headers = "^3.14.0"
drf-writable-nested = "^0.7.0"
django-json-404-middleware = { git = "https://github.com/Axeltherabbit/django-json-404-middleware" }
python-dotenv = "^1.0.0"
drf-problems = { git = "https://github.com/Axeltherabbit/drf-problems" }
typing-extensions = "^4.4.0"
freezegun = "^1.2.2"
pytz = "^2023.3"
tzdata = "^2023.3"
drf-spectacular = "^0.26.1"
gunicorn = "^20.1.0"
generics = "^6.0.0"
drf-ignore-slash-middleware = "^0.0.1"
django-easy-health-check = "^1.0.1"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
pyright = "^1.1.301"
pycodestyle = "^2.9.1"
assertpy = "^1.1"
snapshottest = "^0.6.0"
ddt = "^1.6.0"
coverage = "^7.2.2"
drf-yasg = "^1.21.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
force-exclude='''
migrations
'''