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
|
[project]
name = "standard-pipes"
version = "3.13.0"
description = "Standard library pipes redistribution. \"dead battery\"."
keywords = ["stdlib"]
authors = [
{ name = "Python Developers", email = "python-deadlib@youknowone.org" }
]
readme = "README.rst"
license = { text = "PSF-2.0" }
classifiers = [
"License :: OSI Approved :: Python Software Foundation License",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3",
]
[tool.setuptools.packages]
find = {include = ["pipes*"]}
[project.urls]
"Homepage" = "https://github.com/youknowone/python-deadlib"
[build-system]
requires = ["setuptools>=75.0"]
build-backend = "setuptools.build_meta"
|