-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
65 lines (58 loc) · 1.26 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
[tool.black]
line-length = 88
target-version = ['py311']
include = '\.pyi?$'
exclude = '''
(
.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| build
| dist
| migrations
| scripts
)
'''
[tool.poetry]
name = "django-coding-challenge"
version = "0.1.0"
description = ""
authors = ["Tim Fromme <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
argon2-cffi = "^23.1.0"
uvicorn = { extras = ["standard"], version = "^0.29.0" }
redis = { version = "^5", extras = ["hiredis"] }
Django = "^4.2"
Jinja2 = "^3"
django-redis = "^5"
django-environ = "^0.11.2"
django-cors-headers = "^4.3.1"
djangorestframework = "^3.15"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
Werkzeug = "^3"
ipdb = "^0.13"
psycopg = "^3.1"
watchfiles = "^0.21.0"
mypy = "^1.9.0"
django-stubs = "^4.2.7"
pytest = "^8.1.1"
pytest-sugar = "^1.0.0"
djangorestframework-stubs = "^3.14.5"
flake8 = "^7.0.0"
flake8-isort = "^6.1.1"
black = "^24.3.0"
pylint-django = "^2.5.5"
factory-boy = "^3.3.0"
django-extensions = "^3.2.3"
pytest-django = "^4.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"