-
Notifications
You must be signed in to change notification settings - Fork 151
/
setup.py
33 lines (32 loc) · 1013 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
28
29
30
31
32
33
from setuptools import setup
setup(
name='pretty_midi',
version='0.2.10',
description='Functions and classes for handling MIDI data conveniently.',
author='Colin Raffel',
author_email='craffel@gmail.com',
url='https://github.com/craffel/pretty-midi',
packages=['pretty_midi'],
package_data={'': ['TimGM6mb.sf2']},
long_description="""\
Functions and classes which make handling MIDI data easy in Python.
Provides methods for parsing, modifying, and analyzing MIDI files.
""",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Multimedia :: Sound/Audio :: MIDI",
],
keywords='audio music midi mir',
license='MIT',
install_requires=[
'numpy >= 1.7.0',
'mido >= 1.1.16',
'six',
],
extras_require={
'fluidsynth': ['pyfluidsynth>=1.3.1',],
},
)