55 lines
1.3 KiB
TOML
55 lines
1.3 KiB
TOML
[tool.poetry]
|
|
name = "gva"
|
|
version = "0.14.4"
|
|
description = "gnuviechadmin web interface"
|
|
authors = ["Jan Dittberner <jan@dittberner.info>"]
|
|
license = "AGPL-3+"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
django = "^4.2"
|
|
psycopg2-binary = "^2.9"
|
|
celery = "^5.2.7"
|
|
django-allauth = "^0.52.0"
|
|
django-crispy-forms = "^2.0"
|
|
django-debug-toolbar = "^3.8"
|
|
django-model-utils = "^4.1"
|
|
gvacommon = {version = "^0.7.0", source = "gnuviech"}
|
|
passlib = "^1.7.4"
|
|
redis = "^4.5.1"
|
|
requests-oauthlib = "^1.3.1"
|
|
django-impersonate = "^1.9.1"
|
|
djangorestframework = "^3.14.0"
|
|
markdown = "^3.4.3"
|
|
django-filter = "^23.1"
|
|
crispy-bootstrap5 = "^0.7"
|
|
python-magic = "^0.4.27"
|
|
isort = "^5.12.0"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
coverage = "^7.1.0"
|
|
sphinx = "<6"
|
|
releases = "^2.0.0"
|
|
sphinxcontrib-blockdiag = "^3.0.0"
|
|
pylama = "^8.4.1"
|
|
black = {extras = ["d"], version = "^23.3.0"}
|
|
|
|
|
|
[[tool.poetry.source]]
|
|
name = "gnuviech"
|
|
url = "https://pypi.gnuviech-server.de/simple"
|
|
priority = "explicit"
|
|
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
known_django = ["django","model_utils"]
|
|
known_drf = ["rest_framework"]
|
|
known_celery = ["celery"]
|
|
sections = ["FUTURE", "STDLIB", "DJANGO", "DRF", "CELERY", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|