django-modeltranslation/pyproject.toml

31 lines
660 B
TOML
Raw Normal View History

2020-03-12 21:41:16 +00:00
[tool.poetry]
name = "django-modeltranslation"
version = "0.18.10"
2020-03-12 21:41:16 +00:00
description = "Translates Django models using a registration approach."
authors = ["Peter Eschler <peschler@gmail.com>"]
maintainers = ["Serhii Tereshchenko <serg.partizan@gmail.com>"]
2021-01-16 10:14:36 +00:00
packages = [
{ include = "modeltranslation" },
]
2020-03-12 21:41:16 +00:00
[tool.poetry.dependencies]
python = ">=3.8,<4"
2022-07-22 08:31:17 +00:00
django = ">=3.2"
2023-10-15 12:41:49 +00:00
ruff = "^0.0.292"
2020-03-12 21:41:16 +00:00
[tool.poetry.dev-dependencies]
2022-11-22 14:39:59 +00:00
pdbpp = "*"
parameterized = "*"
2022-11-22 14:39:59 +00:00
pytest-cov = "*"
pytest = "*"
pytest-sugar = "*"
pytest-django = "*"
2022-11-22 14:37:39 +00:00
django-types = "*"
2021-09-18 07:50:23 +00:00
2023-10-15 12:41:49 +00:00
[tool.ruff]
line-length = 100
target-version = "py38"
ignore = [
2023-11-25 11:33:59 +00:00
"E501", # line length is handled by formatter
2023-10-15 12:41:49 +00:00
]