-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
93 lines (85 loc) · 2.01 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[tool.poetry]
name = "market-access-python-frontend"
version = "0.1.0"
description = "Hello"
authors = ["Ferenc Csepregi <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.9"
django = "4.2.16"
django-environ = "==0.4.5"
django-extensions = "==3.0.9"
django-log-formatter-ecs = "==0.0.5"
django-model-utils = "==4.0.0"
django-redis = "==4.12.1"
django-settings-export = "==1.2.1"
elastic-apm = "~=6.3"
gunicorn = "==22.0.0"
gevent = "==23.9.1"
greenlet = "^3.0.0"
mohawk = "==1.1.0"
psycopg2-binary = "==2.9.5"
python-json-logger = "==2.0.0"
python-dateutil = ">=2.8.2"
python-magic = "==0.4.18"
redis = "==4.5.4"
requests = "==2.32.3"
sentry-sdk = "==2.8.0"
whitenoise = "==5.2.0"
simplejson = "==3.17.2"
urllib3 = "~=1.26.18"
django-webpack-loader = "~=1.3.0"
django-formtools = "^2.3"
certifi = "2024.7.4"
sqlparse = "0.5.0"
cryptography = "43.0.1"
django-csp = "~=3.7"
django-cors-headers = "~=4.3.0"
tzdata = "^2023.3"
opentelemetry-distro = "*"
opentelemetry-exporter-otlp = "*"
opentelemetry-instrumentation-wsgi = "*"
opentelemetry-propagator-aws-xray = "*"
opentelemetry-sdk-extension-aws = "*"
django-log-formatter-asim = "*"
dbt-copilot-python = "^0.2.0"
dj-database-url = "^2.1.0"
[tool.poetry.dev-dependencies]
black = "~=24.3.0"
flake8 = "~=5.0.0"
ipython = "==8.10.0"
isort = "^5.10.1"
mock = "~=4.0.1"
pyopenssl = "~=19.1.0"
pytest-cov = "~=2.10.1"
pytest-django = "4.5.2"
pytest-xdist = "~=2.1.0"
pytest-order = "~=1.1.0"
splinter = "~=0.17.0"
werkzeug = "~=3.0.6"
selenium = "^4.1.3"
coverage = "^7.2.7"
pytest-watch = "^4.2.0"
playwright = "^1.39.0"
[build-system]
requires = ["poetry~=1.6.1"]
build-backend = "poetry.masonry.api"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "config.settings.test"
testpaths = "tests"
python_files = ["tests.py", "test_*.py", "*_tests.py"]
addopts = """
--reuse-db
--ds=config.settings.test
--cov=.
--no-cov-on-fail
--cov-branch
"""
[tool.coverage.run]
omit = [
"*/tests/*",
"*/migrations/*",
"*__init__*",
"*test_*",
]
[tool.isort]
profile = "black"