-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
103 lines (95 loc) · 2.07 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
94
95
96
97
98
99
100
101
102
103
[tool.poetry]
name = "market-access-public-frontend"
version = "0.0.1"
description = "Hello"
authors = ["Ferenc Csepregi <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.9.2"
directory-client-core = "^7.2.12"
directory-forms-api-client = "==7.4.2"
django = "4.2.20"
django-environ = "==0.11.2"
django-extensions = "==3.2.3"
django-model-utils = "==5.0.0"
django-settings-export = "==1.2.1"
elastic-apm = "==6.23.0"
gunicorn = "==23.0.0"
gevent = "==23.9.1"
psycopg2-binary = "==2.9.10"
python-json-logger = "2.0.7"
python-dateutil = "*"
python-magic = "==0.4.27"
requests = "==2.32.3"
sentry-sdk = "2.19.2"
whitenoise = "==6.8.2"
urllib3 = "~=2.3.0"
django-webpack-loader = "~=3.1.0"
certifi = "2024.12.14"
pyOpenSSL = "^25.0.0"
sqlparse = "0.5.3"
cryptography = "44.0.1"
greenlet = "==3.0.3"
importlib-metadata = "*"
opentelemetry-instrumentation-wsgi = "0.51b0"
django-log-formatter-asim = "^0.0.6"
dbt-copilot-python = "^0.2.0"
dj-database-url = "^2.1.0"
tzdata = "^2024.1"
marshmallow = "3.26.0"
[tool.poetry.dev-dependencies]
black = "~=24.10.0"
flake8 = "~=7.1.1"
ipython = "~=8.18.1"
mock = "~=5.1.0"
pytest = "==8.3.4"
pytest-cov = "6.0.0"
pytest-django = "~=4.9.0"
pytest-xdist = "~=3.6.1"
werkzeug = "~=3.1.3"
splinter = "^0.21.0"
coverage = "^7.2.7"
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-config=.coveragerc
--cov-branch
"""
[tool.isort]
profile = "black"
[tool.coverage.run]
source = ["."]
omit = [
"./venv/*",
"*tests*",
"*config*",
"*manage.py",
"*__init__.py",
"*migrations*",
"*asgi*",
"*wsgi*",
"*admin.py",
"*urls.py",
]
[tool.coverage.report]
omit = [
"./venv/*",
"*tests*",
"*config*",
"*manage.py",
"*__init__.py",
"*migrations*",
"*asgi*",
"*wsgi*",
"*admin.py",
"*urls.py",
]