-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (54 loc) · 1.75 KB
/
setup.py
File metadata and controls
59 lines (54 loc) · 1.75 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from setuptools import setup
import os
def readme():
with open('README.txt') as f:
return f.read()
VERSION = {}
with open(os.path.join('pygmidi', 'versionfile.py')) as f:
exec(f.read(), VERSION)
setup(name='pygmidi',
version=VERSION['__version__'],
description='Python General MIDI representation for symbolic music data analysis',
long_description_content_type='text/markdown',
long_description=open('README.md').read(),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: Free for non-commercial use',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Education',
'Topic :: Artistic Software',
'Topic :: Multimedia :: Sound/Audio :: MIDI'
],
keywords=['general', 'midi', 'dataset', 'music', 'symbolic', 'pygmidi'],
url='http://github.com/LESSSE/pygmidi',
author='Luís Espírito Santo (LESSSE)',
author_email='luis.a.santo@tecnico.ulisboa.pt',
license='',
package_dir={
'pygmidi': 'pygmidi',
'pygmidi.midiarray': 'pygmidi/midiarray',
'pygmidi.utils': 'pygmidi/utils'
},
packages=['pygmidi', 'pygmidi.midiarray', 'pygmidi.utils'],
install_requires=[
'six>=1.0.0,<2.0',
'numpy>=1.10.0,<2.0',
'scipy>=1.0.0,<2.0',
'mido',
'pandas',
'pyfluidsynth',
'scikit-learn',
'six>=1.0.0',
'matplotlib',
'mido',
'pypianoroll',
'python3-midi',
'pretty_midi',
'MIDIUtil'
],
extras_require={
'plot': ['matplotlib>=1.5'],
'gif': ['moviepy>=0.2.3.2'],
},
include_package_data=True,
zip_safe=False)