-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathsetup.cfg
44 lines (40 loc) · 1.06 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
[metadata]
name = community-rpg
version = 0.1.0
description = An Open Source RPG Game developed with Python using the Arcade library.
long_description = file: README.md
author = Paul Vincent Craven
author_email = "paul.craven@simpson.edu"
url = https://github.com/pythonarcade/community-rpg
license = MIT
license_files = LICENSE
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Topic :: Games/Entertainment :: Role-Playing
[options]
packages = find:
include_package_data = True
python_requires = >= 3.8
setup_requires =
setuptools >= 40.6
pip >= 10
install_requires =
arcade >= 2.6.10
[options.packages.find]
include =
rpg
rpg.*
[options.extras_require]
dev =
black
flake8
isort
pre-commit