-
Notifications
You must be signed in to change notification settings - Fork 31
/
pyproject.toml
85 lines (80 loc) · 2.04 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
[tool.poetry]
name = "redbox_app"
version = "0.5.0"
description = ""
authors = ["i.AI <i-dot-ai-enquiries@cabinetoffice.gov.uk>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.12,<3.13"
redbox = {path="../redbox-core", develop=true}
django = "^5.1"
django-libsass = "^0.9"
django-magic-link = "^1.0.0"
whitenoise = "^6.6.0"
watchdog = {extras = ["watchmedo"], version = "^4.0.2"}
jinja2 = "^3.1.2"
django-environ = "^0.11.2"
django-use-email-as-username = "^1.4.0"
markdown-it-py = "^3.0.0"
psycopg2-binary = "^2.9.9"
pyyaml = "^6.0.2"
pytz = "^2024.1"
django-permissions-policy = "^4.21.0"
django-csp = "^3.7"
django-single-session = "^0.2.0"
sentry-sdk = {extras = ["django"], version = "^2.13.0"}
django-storages = "^1.14.2"
boto3 = "^1.34.160"
urllib3 = "<2.3"
requests = "^2.31.0"
python-dotenv = "^1.0.0"
yarl = "^1.9.4"
humanize = "^4.9.0"
channels = {extras = ["daphne"], version = "^4.1.0"}
django-gov-notify = "^0.5.0"
websockets = "^12.0"
django-import-export = "^4.0"
django-q2 = "^1.6.2"
blessed = "^1.20.0"
croniter = "^3.0.3"
djangorestframework = "^3.15.2"
django-plotly-dash = "^2.3.1"
django-adminplus = "^0.6"
pandas = "^2.2.2"
django-waffle = "^4.1.0"
opensearch-py = "^2.7.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
pytest-django = "^4.8.0"
pytest-env = "^1.1.1"
pytest-mock = "^3.12.0"
pytest-cov = "^5.0.0"
pytest-asyncio = "^0.23"
pylint = "^3.2.6"
types-python-dateutil = "^2.9.0.20240315"
types-markdown = "^3.6.0.20240316"
ruff = "^0.5.7"
python-dotenv = "^1.0.1"
pre-commit = "^3.6.2"
freezegun = "^1.2.2"
bandit = "^1.7.8"
django-types = "^0.19.1"
detect-secrets = "^1.4.0"
types-pytz = "^2024.1.0.20240203"
boto3-stubs = "^1.34.160"
requests-mock = "^1.12.1"
django-test-migrations = "^1.3.0"
beautifulsoup4 = "^4.12"
gevent = "^24.10.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "redbox_app.settings"
testpaths = "tests"
norecursedirs = "tests/test_ai.py"
env_override_existing_values = 1
env_files = [
"tests/.env.test",
".env"
]