1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
[build-system]
requires = ["setuptools>=62.4.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["treebeard"]
[tool.setuptools.dynamic]
version = {attr = "treebeard.__version__"}
[project]
name = "django-treebeard"
description = "Efficient tree implementations for Django"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
dynamic = ["version"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities"
]
dependencies = [
"django>=4.2",
]
[project.optional-dependencies]
test = [
"pytest-django>=4.0,<5.0",
"pytest-pythonpath>=0.7,<1.0",
]
[tool.ruff]
line-length = 120
lint.ignore = [
"UP031" # Allow percent formatters
]
lint.select = [
"PLE", # pylint errors
"UP", # pyupgrade
"I", # isort
"F", # pyflakes
"E", # pycodestyle errors
]
|