|
| 1 | +[project] |
| 2 | +name = "wafer" |
| 3 | +dynamic = ["version", "dependencies", "optional-dependencies"] |
| 4 | + |
| 5 | +authors = [ |
| 6 | + { name = "CTPUG", email = "[email protected]" }, |
| 7 | +] |
| 8 | + |
| 9 | +description = "A wafer-thin Django library for running small conferences." |
| 10 | +readme = "README.rst" |
| 11 | + |
| 12 | +license = "ISC" |
| 13 | +license-files = ["LICENSE",] |
| 14 | + |
| 15 | +classifiers = [ |
| 16 | + "Development Status :: 4 - Beta", |
| 17 | + "Intended Audience :: Developers", |
| 18 | + "Operating System :: POSIX", |
| 19 | + "Programming Language :: Python :: 3", |
| 20 | + "Programming Language :: Python :: 3.10", |
| 21 | + "Programming Language :: Python :: 3.11", |
| 22 | + "Programming Language :: Python :: 3.12", |
| 23 | + "Programming Language :: Python :: 3.13", |
| 24 | + "Framework :: Django", |
| 25 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 26 | + "Topic :: Internet :: WWW/HTTP", |
| 27 | +] |
| 28 | + |
| 29 | +[project.urls] |
| 30 | +Repository = "https://github.com/CTPUG/wafer" |
| 31 | +Documentation = "https://wafer.readthedocs.io" |
| 32 | +Issues = "https://github.com/CTPUG/wafer/issues" |
| 33 | + |
| 34 | + |
| 35 | +[build-system] |
| 36 | +requires = ["setuptools >= 77.0.3"] |
| 37 | +build-backend = "setuptools.build_meta" |
| 38 | + |
| 39 | +[tool.setuptools.packages] |
| 40 | +find = {} |
| 41 | + |
| 42 | +[tool.setuptools.package-data] |
| 43 | +"*" = ["*.rst", "*po", "*mo", "*css", "*png", "*js"] |
| 44 | + |
| 45 | +[tool.setuptools.exclude-package-data] |
| 46 | +"*" = ["utils"] |
| 47 | + |
| 48 | +[tool.setuptools.dynamic] |
| 49 | +version = {attr = "wafer.__version__"} |
| 50 | +dependencies = { file = ["requirements.txt"] } |
| 51 | +optional-dependencies = { dev = { file = ["requirements-dev.txt"] } } |
0 commit comments