forked from wearpants/playerpiano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1.08 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('VERSION') as version_stream:
version = version_stream.read().strip()
with open('README.rst') as readme_stream:
readme = readme_stream.read()
setup(
name='PlayerPiano',
version=version,
description='Amaze your friends by running Python doctests in a fake interactive shell',
author='Peter Fein',
author_email='[email protected]',
url='https://github.com/wearpants/playerpiano',
entry_points = {
'console_scripts': [
'playerpiano=playerpiano.piano:main',
'recorderpiano=playerpiano.recorder:main',
]},
packages=find_packages(),
include_package_data = True,
install_requires=['pygments'],
license="BSD",
long_description=readme,
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Topic :: Education :: Computer Aided Instruction (CAI)",
"Topic :: System :: Shells",
],
)