manuels-scolaires/pyproject.toml

53 lines
1.1 KiB
TOML

[tool.poetry]
name = "manuels-scolaires"
version = "0.1.0"
description = ""
authors = ["Gabriel Augendre <gabriel@augendre.info>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
Django = "^3.2.4"
django-bootstrap4 = "^3.0.1"
gunicorn = "^20.1.0"
psycopg2-binary = "^2.9.1"
django-anymail = "^8.4"
whitenoise = "^5.2.0"
django-import-export = "^2.5.0"
beautifulsoup4 = "^4.9.3"
requests = "^2.25.1"
django-environ-2 = "^2.1.0"
[tool.poetry.dev-dependencies]
django-debug-toolbar = "^3.2.1"
pre-commit = "^2.13.0"
pytest = "^6.2.4"
pytest-django = "^4.4.0"
pytest-html = "^3.1.1"
model-bakery = "^1.3.2"
selenium = "^3.141.0"
vcrpy = "^4.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py38']
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = "--html=pytest_result/pytest.html --color=yes"
minversion = "6.0"
DJANGO_SETTINGS_MODULE = "manuels_collection.settings"
junit_family = "xunit1"
norecursedirs = [
".git",
]
python_files = [
"test_*.py",
"tests.py",
]