-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
62 lines (53 loc) · 1.34 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[metadata]
name = community-platformer
description = An Open Source platformer game developed with Python using the Arcade library.
long_description = file: README.md
author = Darren Eberly
author-email = [email protected]
license = MIT
license-file = LICENSE
url = https://github.com/pythonarcade/community-platformer
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Topic :: Games/Entertainment :: Side-Scrolling/Arcade Games
[options]
packages = find:
include_package_data = True
python_requires = >=3.6
setup_requires =
setuptools >= 40.6
pip >= 10
install_requires =
arcade >= 2.6.0
[options.packages.find]
include =
platformer
platformer.*
[options.extras_require]
dev =
flake8
black
isort<5,>=4.2.5
[bdist_wheel]
universal=0
[coverage:run]
branch = True
[coverage:report]
show_missing = True
[flake8]
max-line-length = 88
exclude = .git,__pycache__,__init__.py,.mypy_cache,.pytest_cache
[isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88