36 lines
829 B
TOML
36 lines
829 B
TOML
[tool.poetry]
|
|
name = "printpub"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Nick Krichevsky <nick@ollien.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
django = "^4.2.3"
|
|
djangorestframework = "^3.14.0"
|
|
markdown = "^3.4.3"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest-django = "^4.5.2"
|
|
pytest = "^7.4.0"
|
|
mypy = "^1.4.1"
|
|
djangorestframework-stubs = {extras = ["compatible-mypy"], version = "^3.14.2"}
|
|
django-stubs = {extras = ["compatible-mypy"], version = "^4.2.3"}
|
|
black = "^23.3.0"
|
|
isort = "^5.12.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.pytest.ini_options]
|
|
DJANGO_SETTINGS_MODULE = "printpub.settings"
|
|
|
|
[tool.mypy]
|
|
plugins = ["mypy_django_plugin.main", "mypy_drf_plugin.main"]
|
|
|
|
[tool.django-stubs]
|
|
django_settings_module = "printpub.settings"
|