-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
55 lines (49 loc) · 1.85 KB
/
setup.py
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
#!/usr/bin/env python
from os import path
from setuptools import setup, find_packages
BUILD = 0
VERSION = "0.1.0"
RELEASE = VERSION
if __name__ == "__main__":
# List of all the required packages.
install_requires = [
"arcade",
]
# Grab the long description out of the README
fname = path.join(path.dirname(path.abspath(__file__)), "README.rst")
with open(fname, "r") as f:
long_desc = f.read()
# Call the setup function with our setup parameters.
# This kicks off the build.
setup(
name="arcade-roguelike",
version=RELEASE,
description="Sample Python Package",
long_description=long_desc,
author="Paul Vincent Craven",
author_email="[email protected]",
license="MIT",
url="https://github.com/pythonarcade/roguelike",
install_requires=install_requires,
package_dir={"": "source"},
packages=find_packages(where="source"),
python_requires=">=3.6",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
],
test_suite="tests",
project_urls={
"Documentation": "https://arcade-rouguelike.readthedocs.io/en/latest/",
"Issue Tracker": "https://github.com/pythonarcade/roguelike/issues",
"Source": "https://github.com/pythonarcade/roguelike",
},
)