forked from mytardis/mytardis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
105 lines (90 loc) · 2.27 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
104
105
[tool.poetry]
name = "mytardis"
version = "5.0.0"
description = "UoA specific MyTardis"
authors = ["Chris Seal <c.seal@auckland.ac.nz>"]
license = "GNU GPL 3"
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.10"
django = "^4.2.10"
wand = "^0.6.11"
bleach = "^6.0.0"
celery = "^5.3.1"
django-extensions = "^3.2.3"
django-elasticsearch-dsl = ">=8.0"
django-jstemplate = "^2.0.1"
django-registration-redux = "^2.12"
django-tastypie = "^0.14.5"
django-user-agents = "^0.4.0"
django-webpack-loader = "^2.0.1"
django-widget-tweaks = "^1.4.12"
django-storages = "^1.13.2"
gunicorn = "^20.1.0"
gevent = "23.9.0"
html2text = "^2020.1.16"
html5lib = "^1.1"
isodate = "^0.6.1"
pyjwt = "^2.7.0"
lxml = "^4.9.2"
pillow = "10.2.0"
pyoai = "^2.5.0"
pystache = "^0.6.0"
python-dateutil = "^2.8.2"
python-magic = "^0.4.27"
pytz = "^2023.3"
requests = "^2.31.0"
uritemplate = "^4.1.1"
django-graphql-jwt = "^0.3.4"
django-taggit = "^4.0.0"
pylint = "^2.17.5"
urllib3 = "<=2.0"
paramiko = "^3.4.0"
djangorestframework = "^3.15.1"
pyyaml = "^6.0.1"
[tool.poetry.group.docs.dependencies]
sphinx = "^6"
sphinx-rtd-theme = "^1.2.2"
[tool.poetry.group.ldap]
optional = true
[tool.poetry.group.ldap.dependencies]
python-ldap = "^3.4.3"
ldap3 = "^2.9.1"
[tool.poetry.group.postgres]
optional = true
[tool.poetry.group.postgres.dependencies]
psycopg2-binary = "^2.9.6"
[tool.poetry.group.test.dependencies]
behave-django = "^1.4.0"
coverage = "^6"
django-coverage-plugin = "^3.0.0"
flexmock = "^0.11.3"
pylint = "^2.17.4"
pylint-django = "^2.5.3"
selenium = "^4.10.0"
coveralls = "^3.3.1"
codacy-coverage = "^1.3.11"
pytest = "^7.3.2"
pytest-cov = "^4.1.0"
pytest-django = "^4.5.2"
[tool.poetry.group.social_auth]
optional = true
[tool.poetry.group.social_auth.dependencies]
social-auth-app-django = "^5.2.0"
[tool.poetry.group.s3]
optional = true
[tool.poetry.group.s3.dependencies]
boto3 = "^1.26.155"
[tool.poetry.group.sftp]
optional=true
[tool.poetry.group.sftp.dependencies]
paramiko = "^3.4.0"
[tool.isort]
profile = "black"
default_section = "THIRDPARTY"
known_first_party = "tardis" # change it for the name of your django project
known_django = "django"
sections = "FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"