2021-10-15 16:12:56 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "Sith"
|
|
|
|
version = "1"
|
|
|
|
description = "Le web Sith de l'AE"
|
|
|
|
authors = [
|
|
|
|
"Skia <skia@hya.sk>",
|
|
|
|
"klmp200 <antoine@bartuccio.fr>",
|
|
|
|
"Krophil <pierre.brunet@krophil.fr>",
|
|
|
|
"Och <francescowitz68@gmail.com>",
|
|
|
|
"tleb <tleb@openmailbox.org>",
|
|
|
|
"Soldat <ryan-68@live.fr>",
|
|
|
|
"Nabos <gnikwo@hotmail.com>",
|
|
|
|
"Terre <jbaptiste.lenglet+git@gmail.com>",
|
|
|
|
"Lo-J <renaudg779@gmail.com>",
|
|
|
|
"Vial <robin.trioux@utbm.fr>"
|
|
|
|
]
|
|
|
|
documentation = "https://sith-ae.readthedocs.io/"
|
|
|
|
homepage = "https://ae.utbm.fr/"
|
|
|
|
license = "GPL-3.0-only"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-05-08 12:09:37 +00:00
|
|
|
python = "^3.8"
|
2022-08-03 22:26:43 +00:00
|
|
|
Django = "^3.2"
|
2022-08-04 16:08:10 +00:00
|
|
|
Pillow = "^9.2"
|
2021-10-15 16:12:56 +00:00
|
|
|
mistune = "^0.8.4"
|
2022-08-03 22:26:43 +00:00
|
|
|
django-jinja = "^2.10"
|
2022-08-04 16:08:10 +00:00
|
|
|
cryptography = "^37.0"
|
2021-10-15 16:12:56 +00:00
|
|
|
pyOpenSSL = "^21.0.0"
|
|
|
|
pytz = "^2021.1"
|
2022-08-03 22:26:43 +00:00
|
|
|
djangorestframework = "^3.13"
|
2022-08-04 16:08:10 +00:00
|
|
|
django-phonenumber-field = "^6.3"
|
|
|
|
phonenumbers = "^8.12"
|
2021-10-15 16:12:56 +00:00
|
|
|
django-ajax-selects = "^2.1.0"
|
2022-08-04 16:08:10 +00:00
|
|
|
reportlab = "^3.6"
|
2022-08-03 22:26:43 +00:00
|
|
|
django-haystack = "^3.2.1"
|
|
|
|
xapian-haystack = "^3.0.1"
|
2021-10-15 16:12:56 +00:00
|
|
|
xapian-bindings = "^0.1.0"
|
2022-08-04 16:08:10 +00:00
|
|
|
libsass = "^0.21"
|
|
|
|
django-ordered-model = "^3.6"
|
|
|
|
django-simple-captcha = "^0.5.17"
|
2021-10-15 16:12:56 +00:00
|
|
|
python-dateutil = "^2.8.2"
|
2022-08-03 22:26:43 +00:00
|
|
|
psycopg2-binary = "2.9.3"
|
2021-10-15 16:12:56 +00:00
|
|
|
sentry-sdk = "^1.4.3"
|
2022-05-08 12:09:37 +00:00
|
|
|
pygraphviz = "^1.9"
|
2022-08-03 22:26:43 +00:00
|
|
|
Jinja2 = "^3.1"
|
2021-10-15 16:12:56 +00:00
|
|
|
|
|
|
|
# Extra optional dependencies
|
|
|
|
mysqlclient = { version = "^2.0.3", optional = true }
|
|
|
|
coverage = {version = "^5.5", optional = true}
|
|
|
|
|
|
|
|
# Docs extra dependencies
|
|
|
|
Sphinx = {version = "^4.2.0", optional = true}
|
|
|
|
sphinx-rtd-theme = {version = "^1.0.0", optional = true}
|
|
|
|
sphinx-copybutton = {version = "^0.4.0", optional = true}
|
|
|
|
|
|
|
|
[tool.poetry.extras]
|
|
|
|
testing = ["coverage"]
|
|
|
|
migration = ["mysqlclient"]
|
|
|
|
docs = ["Sphinx", "sphinx-rtd-theme", "sphinx-copybutton"]
|
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
django-debug-toolbar = "^3.2.2"
|
|
|
|
ipython = "^7.28.0"
|
2022-08-04 16:08:10 +00:00
|
|
|
black = "^22.6.0"
|
2021-10-15 16:12:56 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|