-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
34 lines (30 loc) · 883 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='catchthecat',
version='0.1',
description='A cat on the loose in the house -- a simple text game.',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
],
url='http://pneumatic.readthedocs.org/',
author='Anthony DeBarros',
author_email='[email protected]',
license='MIT',
packages=['catchthecat'],
zip_safe=False,
entry_points={
'console_scripts': [
'catchthecat = catchthecat.catchthecat:start'
]
}
)