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
|
[build-system]
requires = ["setuptools >= 77.0.3", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "pubpaste"
dynamic = [ "version" ]
authors = [
{ name = "The Anarcat", email = "anarcat@debian.org" },
]
requires-python = ">=3.6"
readme = "README.md"
license = "AGPL-3.0-or-later"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: X11 Applications",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: Communications :: File Sharing",
]
[project.urls]
Homepage = "https://gitlab.com/anarcat/pubpaste/"
Issues = "https://gitlab.com/anarcat/pubpaste/issues"
Funding = "http://saythanks.io/to/anarcat"
[project.scripts]
pubpaste = "pubpaste:main"
[tool.mypy]
strict = true
[tool.setuptools_scm]
|