|
2 | 2 | from setuptools import find_packages
|
3 | 3 |
|
4 | 4 | setup(name='mazeexp',
|
5 |
| - version='0.0.1', |
6 |
| - author='Mr-Yellow', |
7 |
| - author_email='mr-yellow@mr-yellow.com', |
8 |
| - description='A maze exploration game engine', |
9 |
| - packages=find_packages(), |
10 |
| - url='https://github.com/mryellow/maze_explorer', |
11 |
| - license='MIT', |
12 |
| - install_requires=['cocos2d', 'pyglet'] |
| 5 | + version='0.0.1', |
| 6 | + author='Mr-Yellow', |
| 7 | + author_email='mr-yellow@mr-yellow.com', |
| 8 | + description='A maze exploration game engine', |
| 9 | + packages=find_packages(), |
| 10 | + url='https://github.com/mryellow/maze_explorer', |
| 11 | + license='MIT', |
| 12 | + install_requires=['cocos2d', 'pyglet'], |
| 13 | + classifiers=[ |
| 14 | + # How mature is this project? Common values are |
| 15 | + # 3 - Alpha |
| 16 | + # 4 - Beta |
| 17 | + # 5 - Production/Stable |
| 18 | + 'Development Status :: 3 - Alpha', |
| 19 | + |
| 20 | + # Indicate who your project is intended for |
| 21 | + 'Intended Audience :: Science/Research', |
| 22 | + 'Topic :: Scientific/Engineering :: Artificial Intelligence', |
| 23 | + |
| 24 | + # Pick your license as you wish (should match "license" above) |
| 25 | + 'License :: OSI Approved :: MIT License', |
| 26 | + |
| 27 | + # Specify the Python versions you support here. In particular, ensure |
| 28 | + # that you indicate whether you support Python 2, Python 3 or both. |
| 29 | + 'Programming Language :: Python :: 2', |
| 30 | + 'Programming Language :: Python :: 2.6', |
| 31 | + 'Programming Language :: Python :: 2.7', |
| 32 | + ], |
13 | 33 | )
|
14 | 34 |
|
15 | 35 |
|
|
0 commit comments