-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f83b6cd
commit 8cf58fa
Showing
4 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
[build-system] | ||
requires = [ "whey",] | ||
build-backend = "whey" | ||
|
||
[project] | ||
name = "spam" | ||
version = "2020.0.0" | ||
description = "Lovely Spam! Wonderful Spam!" | ||
readme = "README.rst" | ||
requires-python = ">=3.8" | ||
license = {file = "LICENSE.txt"} | ||
keywords = [ "egg", "bacon", "sausage", "tomatoes", "Lobster Thermidor",] | ||
authors = [ | ||
{name = "Dominic Davis-Foster", email = "dominic@davis-foster.co.uk"}, | ||
{name = "The pip developers", email = "distutils-sig@python.org"} | ||
] | ||
maintainers = [ | ||
{name = "Brett Cannon", email = "brett@python.org"} | ||
] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Programming Language :: Python" | ||
] | ||
|
||
dependencies = [ | ||
"httpx", | ||
"gidgethub[httpx]>4.0.0", | ||
"django>2.1; os_name != 'nt'", | ||
"django>2.0; os_name == 'nt'" | ||
] | ||
|
||
[project.optional-dependencies] | ||
test = [ | ||
"pytest < 5.0.0", | ||
"pytest-cov[all]" | ||
] | ||
|
||
[project.urls] | ||
homepage = "https://example.com" | ||
documentation = "https://readthedocs.org" | ||
repository = "https://github.com" | ||
changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md" | ||
|
||
[project.scripts] | ||
spam-cli = "spam:main_cli" | ||
# One which depends on extras: | ||
foobar = "foomod:main_bar [bar,baz]" | ||
|
||
|
||
[project.gui-scripts] | ||
spam-gui = "spam:main_gui" | ||
|
||
[project.entry-points."spam.magical"] | ||
tomatoes = "spam:main_tomatoes" | ||
|
||
# pytest plugins refer to a module, so there is no ':obj' | ||
[project.entry-points.pytest11] | ||
nbval = "nbval.plugin" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters