forked from bitcraft/pyscroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 1.14 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
#!/usr/bin/env python
#encoding: utf-8
#python setup.py sdist upload -r pypi
from setuptools import setup
setup(name='pyscroll',
version='2.16.13',
description='Scrolling maps library for pygame and python 2.7 & 3.3+',
author='bitcraft',
author_email='leif.theden@gmail.com',
url='http://github.com/bitcraft/pyscroll',
packages=['pyscroll'],
install_requires=['pygame'],
license='LGPLv3',
long_description='see readme.md',
package_data={
'pyscroll': ['license.txt', 'readme.md']},
classifiers=[
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Games/Entertainment",
"Topic :: Multimedia :: Graphics",
"Topic :: Software Development :: Libraries :: pygame",
],
)