-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
27 lines (26 loc) · 854 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
#!/usr/bin/python
from __future__ import unicode_literals
from setuptools import setup, find_packages
import sys
if sys.version_info[0]==2:
sys.exit('Sorry, python2 support is currently broken. Use python3!')
setup(
name='textbeat',
version='0.1.0',
description='text music sequencer and midi shell',
url='https://github.com/filpcoder/textbeat',
author='Grady O\'Connell',
author_email='[email protected]',
license='MIT',
packages=['textbeat','textbeat.def','textbeat.presets','textbeat.plugins'],
include_package_data=True,
install_requires=[
'pygame','colorama','prompt_toolkit','appdirs','pyyaml','docopt','future','shutilwhich','mido'
],
entry_points='''
[console_scripts]
textbeat=textbeat.__main__:main
txbt=textbeat.__main__:main
''',
zip_safe=False
)