forked from memeLab/Jandig
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
61 lines (56 loc) · 1.22 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
[tool.poetry]
name = "Jandig"
version = "2.0.0"
description = ""
authors = ["Your Name <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.10"
MarkupSafe = "^2.1.1"
Django = "^4.0.8"
Jinja2 = "^3.1.2"
gunicorn = "^20.1.0"
Pillow = "^9.2.0"
django-cors-headers = "^3.13.0"
invoke = "^1.7.1"
django-environ = "^0.9.0"
psycopg2-binary = "^2.9.3"
django-boogie = "^0.13.3"
Sphinx = "^5.0.2"
Babel = "^2.10.3"
django-debug-toolbar = "^3.5.0"
gevent = "^21.12.0"
pymarker = "^0.3.1"
django-extensions = "^3.1.5"
factory-boy = "^3.2.1"
boto3 = "^1.24.27"
django-storages = "^1.12.3"
sentry-sdk = "^1.7.0"
djangorestframework = "^3.13.1"
pytest = "^7.2.0"
pytest-xdist = "^3.0.2"
drf-nested-routers = "^0.93.4"
flake8 = "^5.0.4"
[tool.poetry.dev-dependencies]
black = "^22.10.0"
isort = "^5.10.1"
pytest-django = "^4.5.2"
dj-inmemorystorage = "^2.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "config.test_settings"
python_files = ["tests.py", "test_*.py", "*_tests.py"]
pythonpath = "src"
addopts="-n4"
[tool.black]
exclude = '''
/(
\.git
| migrations
)/
'''
[tool.isort]
profile = "black"
src_paths = ["src"]
skip_glob = "*/migrations/*.py"