-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (29 loc) · 1.04 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
from setuptools import setup
version = "0.9.2"
url = "https://github.com/AndyDeany/pygame-template"
with open("requirements.txt", "r") as requirements_file:
requirements = requirements_file.read().split()
setup(
name="pygametemplate",
version=version,
license="MIT",
description="Making making games with Pygame easier :)",
url=url,
download_url="{}/archive/v{}.tar.gz".format(url, version),
author="Andrew Dean",
author_email="[email protected]",
packages=("pygametemplate",),
keywords=("pygame", "template", "gamedev"),
install_requires=requirements,
classifiers=(
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: pygame",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
)
)