1from setuptools import setup
2
3
4setup(
5    name='Pyganim',
6    version='0.9.2',
7    url='http://inventwithpython.com/pyganim',
8    author='Al Sweigart',
9    author_email='al@inventwithpython.com',
10    description=('A sprite animation module for Pygame.'),
11    license='BSD',
12    packages=['pyganim'],
13    test_suite='tests',
14    keywords="pygame sprite animation game 2D graphics",
15    classifiers=[
16        'Development Status :: 3 - Alpha',
17        'Environment :: Win32 (MS Windows)',
18        'Environment :: X11 Applications',
19        'Environment :: MacOS X',
20        'Intended Audience :: Developers',
21        'License :: OSI Approved :: BSD License',
22        'Operating System :: OS Independent',
23        'Programming Language :: Python',
24        'Programming Language :: Python :: 2',
25        'Programming Language :: Python :: 2.7',
26        'Programming Language :: Python :: 3',
27        'Programming Language :: Python :: 3.3',
28        'Programming Language :: Python :: 3.4',
29        'Programming Language :: Python :: 3.5',
30    ],
31)