-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
57 lines (52 loc) · 1.53 KB
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]
name = "contrast-api"
version = "0.1.0"
description = ""
authors = []
package-mode = false
[tool.poetry.dependencies]
python = ">3.10,<3.12"
Django = "5.1.8"
django-configurations = "^2.5.1"
dj-database-url = "^3.0.1"
djangorestframework = "^3.16.1"
django-filter = "^25.1"
django-extensions = "^4.1"
django-import-export = "^4.3.13"
django-storages = "^1.14.6"
Pillow = "^11.2.1"
django-cors-headers = "^4.9.0"
django-querycount = "^0.8.3"
gunicorn = "^23.0.0"
djangorestframework-simplejwt = "^5.4.0"
psycopg2 = "^2.9.11"
drf-nested-routers = "^0.95.0"
drf-spectacular = "^0.29.0"
boto3 = ">=1.37.30"
django-nested-inline = "^0.4.6"
# following needed as original package is unmaintained
django-modeladmin-reorder = {git = "https://github.com/bloodwithmilk25/django-modeladmin-reorder.git", rev = "master"}
django-spa = {git = "https://github.com/VBobCat/django-spa.git", rev = "master"}
django-countries = "7.6.1"
numpy = "^2.2.4"
pandas = "^2.2.3"
whitenoise = "6.2.0" # currently should be hardcoded to 6.2.0
django-admin-rangefilter = "^0.13.3"
django-anymail = "^13.1"
sentry-sdk = "^2.46.0"
django-two-factor-auth = { extras = ["phonenumbers"], version = "^1.18.1" }
django-simple-history = "^3.10.1"
openpyxl = "^3.1.5"
matplotlib = "^3.10.3"
nibabel = "^5.3.2"
nilearn = "^0.12.1"
[tool.poetry.dev-dependencies]
pytest = "^9.0.1"
ruff = "^0.14.6"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
# Never enforce `E501` (line length violations).
lint.ignore = ["E501"]