forked from answerdigital/AnswerKing-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 978 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 978 Bytes
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
[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.1.5"
djangorestframework = "^3.14.0"
mysqlclient = "^2.1.1"
django-cors-headers = "^3.13.0"
drf-writable-nested = "^0.7.0"
django-json-404-middleware = { git = "https://github.com/Axeltherabbit/django-json-404-middleware" }
python-dotenv = "^0.21.0"
drf-problems = { git = "https://github.com/Axeltherabbit/drf-problems" }
typing-extensions = "^4.4.0"
freezegun = "^1.2.2"
pytz = "^2022.7"
tzdata = "^2022.7"
drf-spectacular = "^0.25.1"
[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
pyright = "^1.1.278"
pycodestyle = "^2.9.1"
assertpy = "^1.1"
snapshottest = "^0.6.0"
ddt = "^1.6.0"
coverage = "^6.5.0"
drf-yasg = "^1.21.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
force-exclude='''
migrations
'''