-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
45 lines (42 loc) · 1.46 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
from setuptools import setup
def readme():
return open("README.rst").read()
setup(name='gallows',
version='0.6.0',
description=("The word game Hangman based on 'Invent Your "
"Own Computer Games with Python'."),
long_description=readme(),
author='Vijay Kumar B.',
author_email='[email protected]',
url='http://github.com/chennaipy/hangman',
license="BSD 2-Clause",
py_modules=['gallows'],
entry_points={
'console_scripts': ['gallows=gallows:main']
},
install_requires=[
'six',
],
tests_require=[
'unittest2',
'mock',
],
test_suite="test",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Education',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Games/Entertainment :: Puzzle Games',
])