-
-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #224 from nbraud/setup.py/setup.cfg
setup.py: Move all configuration to setup.cfg
- Loading branch information
Showing
3 changed files
with
40 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
# Minimum requirements for the build system to execute. | ||
requires = ["setuptools", "wheel"] # PEP 508 specifications. |
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 |
---|---|---|
@@ -1,2 +1,35 @@ | ||
[aliases] | ||
test = pytest | ||
|
||
[metadata] | ||
name = ppb | ||
version = 0.5.0 | ||
author = Piper Thunstrom | ||
author_email = pathunstrom@gmail.com | ||
description = An Event Driven Python Game Engine | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
url = https://github.com/ppb/pursuedpybear | ||
license = Artistic-2.0 | ||
classifiers = | ||
Development Status :: 4 - Beta | ||
Intended Audience :: Education | ||
Intended Audience :: Developers | ||
License :: OSI Approved :: Artistic License | ||
Natural Language :: English | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Topic :: Games/Entertainment | ||
Topic :: Software Development :: Libraries | ||
Operating System :: OS Independent | ||
|
||
[options] | ||
packages = | ||
ppb | ||
ppb.systems | ||
|
||
setup_requires = | ||
pytest-runner | ||
|
||
python_requires = >= 3.6 |
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