gva/pyproject.toml

56 lines
1.3 KiB
TOML
Raw Normal View History

2023-02-18 19:07:05 +01:00
[tool.poetry]
name = "gva"
2023-07-23 11:24:46 +02:00
version = "0.15.1"
2023-02-18 19:07:05 +01:00
description = "gnuviechadmin web interface"
authors = ["Jan Dittberner <jan@dittberner.info>"]
license = "AGPL-3+"
2024-01-13 13:22:50 +01:00
readme = "README.rst"
2023-02-18 19:07:05 +01:00
[tool.poetry.dependencies]
python = "^3.8"
django = "^4.2"
psycopg2-binary = "^2.9"
2023-02-18 19:07:05 +01:00
celery = "^5.2.7"
django-allauth = "^0.60.0"
django-crispy-forms = "^2.0"
django-debug-toolbar = "^4.2"
django-model-utils = "^4.1"
gvacommon = {version = "^0.7.0", source = "gnuviech"}
2023-02-18 19:07:05 +01:00
passlib = "^1.7.4"
redis = "^5.0.1"
2023-02-18 19:07:05 +01:00
requests-oauthlib = "^1.3.1"
2023-04-15 11:48:53 +02:00
django-impersonate = "^1.9.1"
2023-04-16 12:24:32 +02:00
djangorestframework = "^3.14.0"
markdown = "^3.4.3"
django-filter = "^23.1"
crispy-bootstrap5 = "^2023.10"
2023-04-23 14:43:44 +02:00
python-magic = "^0.4.27"
isort = "^5.12.0"
2023-02-18 19:07:05 +01:00
[tool.poetry.group.dev.dependencies]
coverage = "^7.1.0"
sphinx = "<6"
releases = "^2.0.0"
sphinxcontrib-blockdiag = "^3.0.0"
pylama = "^8.4.1"
2023-04-29 10:33:31 +02:00
black = {extras = ["d"], version = "^23.3.0"}
2023-02-18 19:07:05 +01:00
[[tool.poetry.source]]
name = "gnuviech"
url = "https://pypi.gnuviech-server.de/simple"
2023-07-08 16:59:04 +02:00
priority = "explicit"
2023-02-18 19:07:05 +01:00
[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"]
2023-02-18 19:07:05 +01:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"