-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
74 lines (68 loc) · 1.67 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
66
67
68
69
70
71
72
73
74
[tool.poetry]
name = "thenewboston-node"
version = "0.1.0"
description = ""
authors = ["Bucky Roberts <[email protected]>"]
license = "MIT"
packages = [
{ include = "thenewboston_node" },
]
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.9"
Django = "^3.1.7"
psycopg2 = "^2.8.6"
django-split-settings = "^1.0.1"
PyYAML = "^5.4.1"
sentry-sdk = "^1.0.0"
whitenoise = "^5.2.0"
PyNaCl = "^1.4.0"
tqdm = "^4.59.0"
msgpack = "^1.0.2"
more-itertools = "^8.7.0"
cachetools = "^4.2.1"
djangorestframework = "^3.12.4"
djangorestframework-dataclasses = "^0.9"
drf-spectacular = "^0.15.1"
daphne = "^3.0.2"
Pygments = "^2.9.0"
docutils = "^0.17.1"
filelock = "^3.0.12"
django-tqdm = "^1.0.0"
pystun3 = "^1.0.0"
atomicwrites = "^1.4.0"
requests = "^2.26.0"
django-filter = "^2.4.0"
celery = "^5.1.2"
tabulate = "^0.8.9"
[tool.poetry.dev-dependencies]
pre-commit = "^2.10.1"
pytest = "^6.2.2"
pytest-asyncio = "^0.14.0"
pytest-cov = {extras = ["toml"], version = "^2.11.1"}
pytest-django = "^4.1.0"
pytest-xdist = "^2.2.1"
pdbpp = "^0.10.2"
colorlog = "^4.8.0"
yappi = "^1.3.2"
Jinja2 = "^2.11.3"
class-doc = "^0.2.6"
dataclass-bakery = "^0.0.6"
httpretty = "^1.1.3"
pytest-celery = "^0.0.0"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "thenewboston_node.project.settings"
python_files = "test_*.py"
testpaths = ["thenewboston_node"]
[tool.coverage.run]
omit = [
"thenewboston_node/business_logic/tests/*",
"thenewboston_node/core/tests/*",
"thenewboston_node/project/tests/*",
]
[tool.isort]
known_django="django"
sections="FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"