This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/pyproject.toml

57 lines
1.1 KiB
TOML
Raw Normal View History

2020-08-14 14:53:30 +02:00
[tool.black]
target-version = ['py38']
2020-08-18 07:23:59 +02:00
2020-09-05 09:05:06 +02:00
[tool.isort]
profile = "black"
2020-08-18 07:23:59 +02:00
[tool.pytest.ini_options]
2020-12-26 17:11:43 +01:00
addopts = "--color=yes"
2020-08-18 07:23:59 +02:00
minversion = "6.0"
DJANGO_SETTINGS_MODULE = "blog.settings"
testpaths = [
"articles",
2020-09-05 09:05:06 +02:00
"blog",
2020-12-03 22:30:11 +01:00
"attachments",
2020-08-18 07:23:59 +02:00
]
env = [
"GOATCOUNTER_DOMAIN=gc.gabnotes.org"
]
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]
python = "^3.8"
django = "^3.1"
markdown = "^3.2"
gunicorn = "^20.0"
Pygments = "^2.6"
django-anymail = {version = "^7.2", extras = ["mailgun"]}
pillow = "^7.2"
django-cleanup = "^5.0"
requests = "^2.24"
2020-11-29 08:32:46 +01:00
html2text = "^2020.1.16"
2020-12-28 08:04:28 +01:00
readtime = "^1.1.1"
2021-01-04 17:58:41 +01:00
django-compressor = "^2.4"
2021-01-04 21:32:03 +01:00
"calmjs.parse" = "^1.2.5"
2021-01-05 02:36:20 +01:00
pylibmc = "^1.6.1"
2020-11-11 09:38:37 +01:00
[tool.poetry.dev-dependencies]
pre-commit = "^2.7"
pytest = "^6.0"
pytest-django = "^3.9"
model-bakery = "^1.1"
2020-12-03 20:44:16 +01:00
pytest-cov = "^2.10.1"
2020-12-03 22:30:11 +01:00
pytest-recording = "^0.11.0"
pytest-rerunfailures = "^9.1.1"
pytest-env = "^0.6.2"
2021-03-20 11:20:04 +01:00
django-debug-toolbar = "^3.2"
2020-11-11 09:38:37 +01:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"