Skip to content

Commit 2e946b2

Browse files
committed
Package classifiers
1 parent 807cef1 commit 2e946b2

File tree

1 file changed

+28
-8
lines changed

1 file changed

+28
-8
lines changed

setup.py

Lines changed: 28 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,34 @@
22
from setuptools import find_packages
33

44
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+
],
1333
)
1434

1535

0 commit comments

Comments
 (0)