34 lines
790 B
TOML
34 lines
790 B
TOML
[tool.poetry]
|
|
name = "picture-display"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Gabriel Augendre <gabriel@augendre.info>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
Django = "^3.1.5"
|
|
django-phonenumber-field = {extras = ["phonenumbers"], version = "^5.0.0"}
|
|
django-cleanup = "^5.1.0"
|
|
django-anymail = {extras = ["mailgun"], version = "^8.1"}
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^6.2"
|
|
pre-commit = "^2.9.3"
|
|
importlib-metadata = "^3.4.0"
|
|
typing-extensions = "^3.7.4"
|
|
pytest-django = "^4.1.0"
|
|
|
|
[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 = "--color=yes"
|
|
minversion = "6.0"
|
|
DJANGO_SETTINGS_MODULE = "picture_display.settings"
|