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]
|
|
|
|
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"
|
2021-07-10 12:10:17 +02:00
|
|
|
django-environ-2 = "^2.1.0"
|
2021-06-23 21:04:43 +02:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
django-debug-toolbar = "^3.2.1"
|
|
|
|
django-dotenv = "^1.4.2"
|
2021-07-10 12:10:49 +02:00
|
|
|
pre-commit = "^2.13.0"
|
|
|
|
pytest = "^6.2.4"
|
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-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
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
target-version = ['py38']
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
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",
|
|
|
|
]
|