forked from ffont/push2-python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
15 lines (14 loc) · 576 Bytes
/
Copy pathsetup.py
File metadata and controls
15 lines (14 loc) · 576 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fromsetuptoolsimportsetup, find_packages
setup(name='push2-python',
version='0.6',
description='Utils to interface with Ableton\'s Push 2 from Python',
url='https://github.com/ffont/push2-python',
author='Frederic Font',
author_email='frederic.font@gmail.com',
license='MIT',
install_requires=['numpy', 'pyusb', 'python-rtmidi', 'mido', 'flask', 'flask-socketio', 'eventlet' , 'pillow'],
python_requires='>=3',
setup_requires=['setuptools_scm'],
include_package_data=True,
packages=find_packages()
)