tasteful-python/pyproject.toml

47 lines
1.2 KiB
TOML

[project]
name="tasteful-python"
version = "0.0.4"
authors = [
{ name="Jeff Moe", email="moe@spacecruft.org" },
]
description="Python suited to my taste"
readme = "README.md"
requires-python = ">=3.11"
# https://pypi.org/classifiers/
classifiers = [
"Programming Language :: Python :: 3.11",
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: DFSG approved",
# "License :: OSI Approved :: Apache Software License",
# "License :: OSI Approved :: BSD License",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
# "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
# "License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
]
dependencies=[
"setuptools",
]
[project.urls]
"Homepage" = "https://spacecruft.org/deepcrayon/tasteful-python"
"Bug Tracker" = "https://spacecruft.org/deepcrayon/tasteful-python/issues"
[build-system]
requires = ["setuptools", "wheel"]
[project.optional-dependencies]
dev = [
"black",
"pip>=21.3",
"setuptools",
]
[tool.black]
target-version = ['py311']
skip_magic_trailing_comma = true