forked from craffel/pretty-midi
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (26 loc) · 918 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
from setuptools import setup
setup(
name='pretty_midi',
version='0.0.1',
description='A class for handling MIDI data in a convenient way.',
author='Colin Raffel',
author_email='[email protected]',
url='https://github.com/craffel/pretty_midi',
packages=['pretty_midi'],
package_data={'': ['TimGM6mb.sf2']},
long_description="""\
A class which makes handling MIDI data easy in Python. Provides methods for extracting and modifying the useful parts of MIDI files.
""",
classifiers=[
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
],
keywords='audio music midi mir',
license='GPL',
install_requires=[
'numpy >= 1.7.0',
],
)