-
Notifications
You must be signed in to change notification settings - Fork 53
/
setup.py
25 lines (23 loc) · 866 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='isobar',
version='0.2.0',
description='A Python library to express and manipulate musical patterns',
long_description = open("README.md", "r").read(),
long_description_content_type = "text/markdown",
author='Daniel Jones',
author_email='dan-isobar@erase.net',
url='https://github.com/ideoforms/isobar',
packages=find_packages(),
install_requires=['python-osc', 'mido', 'python-rtmidi', 'LinkPython-extern', 'numpy'],
keywords=['sound', 'music', 'composition'],
classifiers=[
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Artistic Software',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers'
],
setup_requires=['pytest-runner'],
tests_require=['pytest', 'pytest-timeout']
)