manuels-scolaires/pyproject.toml

49 lines
1.0 KiB
TOML
Raw Permalink Normal View History

2021-06-23 21:04:43 +02:00
[tool.poetry]
name = "manuels-scolaires"
version = "0.1.0"
description = ""
authors = ["Gabriel Augendre <gabriel@augendre.info>"]
license = "MIT"
[tool.poetry.dependencies]
2022-06-14 16:53:39 +02:00
python = "^3.10"
2021-06-23 21:04:43 +02:00
Django = "^3.2.4"
2022-06-15 19:45:35 +02:00
django-bootstrap4 = "^22.1"
2021-06-23 21:04:43 +02:00
gunicorn = "^20.1.0"
psycopg2-binary = "^2.9.1"
django-anymail = "^8.4"
2022-06-15 19:45:35 +02:00
whitenoise = "^6.2.0"
2021-06-23 21:04:43 +02:00
django-import-export = "^2.5.0"
beautifulsoup4 = "^4.9.3"
requests = "^2.25.1"
2022-06-15 19:45:35 +02:00
django-environ = "^0.9.0"
2021-06-23 21:04:43 +02:00
[tool.poetry.dev-dependencies]
2021-07-10 12:10:49 +02:00
pre-commit = "^2.13.0"
2022-06-15 19:45:35 +02:00
pytest = "^7.1"
2021-07-10 15:28:29 +02:00
pytest-django = "^4.4.0"
pytest-html = "^3.1.1"
model-bakery = "^1.3.2"
selenium = "^3.141.0"
2021-07-10 16:43:33 +02:00
vcrpy = "^4.1.1"
2022-06-15 19:45:35 +02:00
invoke = "^1.7.1"
poetry-deps-scanner = "^1.0.1"
2022-06-15 20:05:58 +02:00
pytest-cov = "^3.0.0"
2021-06-23 21:04:43 +02:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
2021-07-10 12:10:49 +02:00
2021-07-10 15:28:29 +02:00
[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",
]