-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
57 lines (51 loc) · 1.31 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
[tool.poetry]
authors = ["bucky <buckyroberts@gmail.com>"]
description = "Node for thenewboston blockchain."
license = "MIT"
name = "Node"
version = "0.1.0"
[tool.poetry.dependencies]
PyNaCl = "1.4.0"
pymongo = "3.12.1"
python = "^3.9"
requests = "2.26.0"
django-split-settings = "^1.1.0"
Django = "^3.2.12"
djongo = "^1.3.6"
# TODO LOW: Update Pydantic from version 1.8.2 to 1.9.0
# https://thenewboston.atlassian.net/browse/BC-265
pydantic = "1.8.2"
djangorestframework = "^3.12.4"
pystun3 = "^1.0.0"
whitenoise = "^5.3.0"
daphne = "^3.0.2"
django-filter = "^21.1"
colorlog = "^6.6.0"
celery = "^5.2.3"
sentry-sdk = "^1.5.6"
drf-spectacular = "^0.21.2"
model-bakery = "^1.4.0"
[tool.poetry.dev-dependencies]
pre-commit = "^2.15.0"
pytest = "^6.2.5"
pytest-django = "4.5.0"
pytest-cov = "^3.0.0"
pytest-xdist = "^2.4.0"
pdbpp = "^0.10.3"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "node.config.settings"
python_files = "test_*.py"
testpaths = ["node"]
filterwarnings = "ignore::DeprecationWarning:^(?!node\\.).*:"
[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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"