2020-11-11 09:38:37 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "blog"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = ""
|
|
|
|
authors = ["Gabriel Augendre <gabriel@augendre.info>"]
|
|
|
|
license = "GPLv3"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2021-12-19 20:40:51 +01:00
|
|
|
python = "^3.10"
|
2021-12-19 20:29:18 +01:00
|
|
|
django = "^4.0"
|
2020-11-11 09:38:37 +01:00
|
|
|
markdown = "^3.2"
|
|
|
|
gunicorn = "^20.0"
|
|
|
|
Pygments = "^2.6"
|
2021-12-19 20:29:18 +01:00
|
|
|
django-anymail = {version = "^8.4", extras = ["mailgun"]}
|
|
|
|
pillow = "^8.4"
|
2020-11-11 09:38:37 +01:00
|
|
|
django-cleanup = "^5.0"
|
|
|
|
requests = "^2.24"
|
2020-12-28 08:04:28 +01:00
|
|
|
readtime = "^1.1.1"
|
2021-01-05 02:36:20 +01:00
|
|
|
pylibmc = "^1.6.1"
|
2021-03-20 19:59:53 +01:00
|
|
|
django-debug-toolbar = "^3.2"
|
2021-03-21 15:30:16 +01:00
|
|
|
whitenoise = {extras = ["brotli"], version = "^5.2.0"}
|
|
|
|
rcssmin = "^1.0.6"
|
2021-03-21 16:00:33 +01:00
|
|
|
django-csp = "^3.7"
|
2021-12-26 23:24:33 +01:00
|
|
|
django-two-factor-auth = {extras = ["phonenumberslite"], git = "https://github.com/Bouke/django-two-factor-auth.git", rev = "ffe4422e"}
|
2021-12-27 11:48:33 +01:00
|
|
|
beautifulsoup4 = "^4.10.0"
|
2021-12-27 22:10:28 +01:00
|
|
|
django-environ = "^0.8.1"
|
2021-12-28 23:45:35 +01:00
|
|
|
django-stubs-ext = "^0.3.1"
|
2020-11-11 09:38:37 +01:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
pre-commit = "^2.7"
|
|
|
|
pytest = "^6.0"
|
2021-12-19 20:29:18 +01:00
|
|
|
pytest-django = "^4.5"
|
2020-11-11 09:38:37 +01:00
|
|
|
model-bakery = "^1.1"
|
2021-12-19 20:29:18 +01:00
|
|
|
pytest-cov = "^3.0"
|
|
|
|
pytest-recording = "^0.12.0"
|
|
|
|
pytest-rerunfailures = "^10.2"
|
2021-03-04 20:03:05 +01:00
|
|
|
pytest-env = "^0.6.2"
|
2021-12-19 20:29:18 +01:00
|
|
|
poetry-deps-scanner = "^1.0.1"
|
2021-12-19 21:22:34 +01:00
|
|
|
invoke = "^1.6.0"
|
2021-12-28 22:31:53 +01:00
|
|
|
mypy = "^0.930"
|
|
|
|
django-stubs = "^1.9.0"
|
|
|
|
types-Markdown = "^3.3.10"
|
|
|
|
types-requests = "^2.26.3"
|
|
|
|
types-setuptools = "^57.4.5"
|
|
|
|
types-toml = "^0.10.1"
|
|
|
|
types-beautifulsoup4 = "^4.10.7"
|
|
|
|
types-Pillow = "^8.3.11"
|
2020-11-11 09:38:37 +01:00
|
|
|
|
2021-12-19 21:41:20 +01:00
|
|
|
[tool.black]
|
|
|
|
target-version = ['py38']
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
addopts = "--color=yes"
|
|
|
|
minversion = "6.0"
|
|
|
|
DJANGO_SETTINGS_MODULE = "blog.settings"
|
|
|
|
testpaths = [
|
|
|
|
"src",
|
|
|
|
]
|
|
|
|
env = [
|
|
|
|
"GOATCOUNTER_DOMAIN=gc.gabnotes.org"
|
|
|
|
]
|
|
|
|
|
2021-12-28 22:31:53 +01:00
|
|
|
[tool.mypy]
|
|
|
|
plugins = ["mypy_django_plugin.main"]
|
|
|
|
mypy_path = "$MYPY_CONFIG_FILE_DIR/stubs:$MYPY_CONFIG_FILE_DIR/src"
|
|
|
|
exclude = "/migrations/"
|
|
|
|
|
|
|
|
[[tool.mypy.overrides]]
|
|
|
|
module = [
|
|
|
|
"environ",
|
2021-12-29 01:29:05 +01:00
|
|
|
"model_bakery",
|
2021-12-28 22:31:53 +01:00
|
|
|
]
|
|
|
|
ignore_missing_imports = true
|
|
|
|
|
|
|
|
[tool.django-stubs]
|
|
|
|
django_settings_module = "blog.settings"
|
|
|
|
|
|
|
|
|
2020-11-11 09:38:37 +01:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|