forked from openradx/adit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (73 loc) · 1.84 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
[tool.poetry]
name = "adit"
version = "0.23.3"
description = "ADIT (Automated DICOM Transfer) is a swiss army knife to exchange DICOM data between various systems by using a convenient web frontend."
authors = ["medihack <[email protected]>"]
license = "GPLv3"
[tool.poetry.dependencies]
cchardet = "^2.1.7"
celery = "^5.2.7"
channels = "^4.0.0"
cryptography = "^38.0.2"
dicognito = "^0.15.0"
Django = "^4.0.6"
django-crispy-forms = "^1.14.0"
django-environ = "^0.9.0"
django-extensions = "^3.1.5"
django-filter = "^22.1"
django-loginas = "^0.3.9"
django-registration-redux = "^2.10"
django-revproxy = {git = "https://github.com/jazzband/django-revproxy.git"}
django-tables2 = "^2.3.3"
djangorestframework = "^3.13.1"
flower = "^1.0.0"
humanize = "^4.0.0"
Markdown = "^3.3.7"
pika = "^1.1.0"
psycopg2 = "^2.9.3"
pydicom = "^2.3.0"
pynetdicom = "^2.0.2"
python = "^3.9"
redis = "^4.3.4"
toml = "^0.10.2"
Twisted = {extras = ["tls", "http2"], version = "^22.2.0"}
whitenoise = "^6.0.0"
daphne = "^4.0.0"
channels-redis = "^4.0.0"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
debugpy = "^1.6.2"
django-debug-permissions = "^1.0.0"
django-debug-toolbar = "^3.2.4"
factory-boy = "^3.1.0"
Faker = "^15.1.1"
ipython = "^8.1.1"
pytest = "^7.1.2"
pytest-cov = "^4.0.0"
pytest-django = "^4.5.2"
pytest-picked = "^0.4.4"
pytest-watch = "^4.2.0"
requests = "^2.27.1"
time-machine = "^2.1.0"
pyright = "^1.1.264"
django-types = "^0.16.0"
celery-types = "^0.14.0"
pytest-playwright = "^0.3.0"
isort = "^5.10.1"
flake8 = "^5.0.4"
Flake8-pyproject = "^1.1.0"
pytest-celery = "^0.0.0"
ipykernel = "^6.17.1"
[tool.black]
line-length = 100
exclude = "migrations"
[tool.isort]
profile = "black"
lines_between_sections = 0
skip = "migrations"
[tool.flake8]
max-line-length = 100
exclude = "migrations"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"