-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·29 lines (27 loc) · 1021 Bytes
/
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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from setuptools import setup
setup(name="tazlib",
version="1.3.2",
description="Taz - Game Loop and Scene Stack Manager",
author="Max Klingmann <[email protected]>",
author_email="[email protected]",
packages=['taz'],
license="GPLv3",
url="https://github.com/mkli90/Taz",
download_url="https://github.com/mkli90/Taz/tarball/1.3.1",
long_description="http://taz.readthedocs.org/en/latest/index.html",
package_data={
'tmz': ['LICENSE']
},
classifiers=[
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries",
],
)