-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
53 lines (47 loc) · 1.18 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 = "core"
version = "0.1.0"
description = ""
authors = ["bucky <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
Django = ">=4.1.1"
djangorestframework = ">=3.14.0"
psycopg2 = "^2.9.3"
django-filter = "^21.1"
channels = "^3.0.4"
channels-redis = "^3.4.0"
django-split-settings = "^1.1.0"
PyYAML = "^6.0"
whitenoise = "^6.0.0"
PyNaCl = "^1.5.0"
django-cors-headers = "^3.11.0"
django-model-utils = "^4.2.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.0.2"
colorlog = "^6.6.0"
pytest = "^7.1.2"
pytest-django = "^4.5.2"
pytest-xdist = "^2.5.0"
model-bakery = "^1.5.0"
pytest-asyncio = "^0.19.0"
pytest-cov = "^3.0.0"
[tool.isort]
multi_line_output = 5
line_length = 119
[tool.yapf]
based_on_style = "google"
align_closing_bracket_with_visual_indent = true
coalesce_brackets = true
column_limit = 119
dedent_closing_brackets = true
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "core.project.settings"
django_find_project = false
python_files = "test_*.py"
testpaths = ["core"]
filterwarnings = "ignore::DeprecationWarning:^(?!node\\.).*:"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"