django-modeltranslation/pyproject.toml
2023-10-15 15:53:57 +03:00

35 lines
733 B
TOML

[tool.poetry]
name = "django-modeltranslation"
version = "0.18.10"
description = "Translates Django models using a registration approach."
authors = ["Peter Eschler <peschler@gmail.com>"]
maintainers = ["Serhii Tereshchenko <serg.partizan@gmail.com>"]
packages = [
{ include = "modeltranslation" },
]
[tool.poetry.dependencies]
python = ">=3.8,<4"
django = ">=3.2"
ruff = "^0.0.292"
[tool.poetry.dev-dependencies]
pdbpp = "*"
black = "*"
parameterized = "*"
pytest-cov = "*"
pytest = "*"
pytest-sugar = "*"
pytest-django = "*"
django-types = "*"
[tool.black]
line-length = 100
skip-string-normalization = true
[tool.ruff]
line-length = 100
target-version = "py38"
ignore = [
"E501", # line length is handled by black
]