Files
2026-08-06 20:51:57 +02:00

31 lines
589 B
TOML

[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "orfeo-django-toolkit"
version = "0.1.0"
description = "Reusable Django components and utilities"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"Django>=5.2",
]
authors = [
{name = "Charles Goffart"}
]
license = {text = "MIT"}
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
orfeo_django_toolkit = [
"templates/**/*",
"static/**/*",
]