48 lines
1 KiB
TOML
48 lines
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.10"
|
|
Django = "^3.2.4"
|
|
django-bootstrap4 = "^22.1"
|
|
gunicorn = "^20.1.0"
|
|
psycopg2-binary = "^2.9.1"
|
|
django-anymail = "^8.4"
|
|
whitenoise = "^6.2.0"
|
|
django-import-export = "^2.5.0"
|
|
beautifulsoup4 = "^4.9.3"
|
|
requests = "^2.25.1"
|
|
django-environ = "^0.9.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pre-commit = "^2.13.0"
|
|
pytest = "^7.1"
|
|
pytest-django = "^4.4.0"
|
|
pytest-html = "^3.1.1"
|
|
model-bakery = "^1.3.2"
|
|
selenium = "^3.141.0"
|
|
vcrpy = "^4.1.1"
|
|
invoke = "^1.7.1"
|
|
poetry-deps-scanner = "^1.0.1"
|
|
pytest-cov = "^3.0.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[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",
|
|
]
|