-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 926 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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from setuptools import setup
setup(name="pygame-animation",
version="0.0.5",
description="PyGame Animation and Tweening Library",
author="bitcraft",
author_email="",
packages=['animation'],
license="GPLv3",
url="https://github.com/bitcraft/animation",
download_url="",
long_description="",
package_data={},
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.3",
"Programming Language :: Python :: 3.4",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries",
],
)