-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (48 loc) · 1.17 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
[tool.poetry]
name = "todo-everything-django"
version = "0.1.0"
description = ""
authors = ["Allan Almazan <[email protected]>"]
[tool.isort]
profile = "black"
[tool.pyright]
include = ["todo_everything"]
ignore = ["todo_everything/tests"]
[tool.poetry.dependencies]
python = "^3.11"
django = "^4.2.6"
django-environ = "^0.11.2"
django-model-utils = "^4.0.0"
django-crispy-forms = "^2.0"
psycopg2 = "^2.9.9"
djangorestframework = "^3.14.0"
django-filter = "^23.3"
djangorestframework-simplejwt = {extras = ["crypto"], version = "^5.3.0"}
celery = "^5.3.4"
pika = "^1.3.2"
django-cors-headers = "^4.3.0"
django-redis-sessions = "^0.6.2"
factory-boy = "^3.3.0"
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
pytest-factoryboy = "^2.0.3"
hypothesis = "^6.87.1"
ipython = "^8.16.1"
pytest-cov = "^4.1.0"
pytest-django = "^4.5.2"
isort = "^5.12.0"
flake8 = "^6.1.0"
doc8 = "^1.1.1"
autopep8 = "^2.0.4"
pytest = "^7.4.2"
pytest-socket = "^0.6.0"
model-bakery = "^1.15.0"
invoke = "^2.2.0"
pre-commit = "^3.4.0"
pyright = "^1.1.332"
django-stubs = "^4.2.5"
pytest-mock = "^3.12.0"
django-extensions = "^3.2.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"