-
Ernesto Rico Schmidt authoredErnesto Rico Schmidt authored
pyproject.toml 1.82 KiB
[tool.poetry]
name = "steering"
version = "1.0.0-alpha4"
description = "AURA Program Scheduler"
license = "AGPL-3.0-or-later"
authors = [
"Ernesto Rico Schmidt <ernesto@helsinki.at>",
"Ingo Leindecker <ingo.leindecker@fro.at>"
]
maintainers = [
"Ernesto Rico Schmidt <ernesto@helsinki.at>"
]
readme = "README.md"
repository = "https://gitlab.servus.at/aura/steering"
[tool.poetry.dependencies]
python = "^3.11"
Django = "^4.2.2"
django-auth-ldap = "^4.1.0"
django-cors-headers = "^4.0.0"
django-extensions = "^3.2.1"
django-filter = "^23.2"
django-json-widget = "^2.0.1"
django-oidc-provider = "^0.8.0"
djangorestframework = "^3.14.0"
djangorestframework-camel-case = "^1.4.2"
django-versatileimagefield = "^3.0"
drf-jsonschema-serializer = "^2.0.0"
drf-spectacular = "^0.27.1"
gunicorn = "^21.2.0"
Pillow = "^10.1.0"
psycopg2-binary = "^2.9.3"
pydot = "^2.0.0"
python-dateutil = "^2.8.2"
python-ldap = "^3.4.3"
pytz = "^2024.1"
requests = "^2.28.1"
[tool.poetry.group.dev.dependencies]
black = "^24.1.1"
flake8 = "^7.0.0"
isort = "^5.10.1"
pre-commit = "^3.3.2"
werkzeug = "^3.0.1"
yq = "^3.4.1"
[tool.poetry.group.test.dependencies]
coverage = "^7.4.3"
pytest = "^8.0.2"
pytest-cov = "^4.1.0"
pytest-django = "^4.5.2"
pytest-factoryboy = "^2.5.1"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "steering.settings"
django_debug_mode = true
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::django.utils.deprecation.RemovedInDjango50Warning",
]
testpaths = [
"program/tests"
]
[tool.coverage.run]
omit = [
"program/management/*",
"program/migrations/*",
"program/tests/*",
]
[tool.black]
line-length = 99
target-version = ["py311"]
[tool.isort]
default_section = "THIRDPARTY"
known_first_party = "django"
profile = "black"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]