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 36 37 38 39
|
[project]
name = "spam"
version = "2020.0.0"
description = "Lovely Spam! Wonderful Spam!"
requires-python = ">=3.8"
keywords = [ "bacon", "egg", "Lobster Thermidor", "sausage", "tomatoes",]
classifiers = [ "Development Status :: 4 - Beta", "Programming Language :: Python",]
dependencies = [ 'django>2.1; os_name != "nt"', 'django>2.0; os_name == "nt"', "gidgethub[httpx]>4.0.0", "httpx",]
dynamic = []
[[project.authors]]
email = "hi@pradyunsg.me"
[[project.authors]]
name = "Tzu-Ping Chung"
[[project.maintainers]]
name = "Brett Cannon"
email = "brett@python.org"
[project.urls]
homepage = "example.com"
documentation = "readthedocs.org"
repository = "github.com"
changelog = "github.com/me/spam/blob/master/CHANGELOG.md"
[project.scripts]
spam-cli = "spam:main_cli"
[project.gui-scripts]
spam-gui = "spam:main_gui"
[project.entry-points."spam.magical"]
tomatoes = "spam:main_tomatoes"
[project.optional-dependencies]
test = [ "pytest<5.0.0", "pytest-cov[all]",]
[tool]
|