forked from ppb/pursuedpybear
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
45 lines (40 loc) · 1.13 KB
/
setup.cfg
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
40
41
42
43
44
45
[aliases]
test = pytest
[metadata]
name = ppb
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.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Games/Entertainment
Topic :: Software Development :: Libraries
Operating System :: OS Independent
[options]
packages =
ppb
ppb.systems
ppb.features
ppb.debug
setup_requires =
pytest-runner
wheel
setuptools_scm
install_requires = file: requirements.txt
tests_requires = file: requirements-tests.txt
python_requires = >= 3.8
use_scm_version = True