forked from magenta/magenta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
110 lines (102 loc) · 4.29 KB
/
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
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# Copyright 2016 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""A setuptools based setup module for magenta."""
from setuptools import find_packages
from setuptools import setup
# Bit of a hack to parse the version string stored in version.py without
# executing __init__.py, which will end up requiring a bunch of dependencies to
# execute (e.g., tensorflow, pretty_midi, etc.).
# Makes the __version__ variable available.
execfile('magenta/version.py')
REQUIRED_PACKAGES = [
'IPython',
'Pillow >= 3.4.2',
'bokeh >= 0.12.0',
'futures',
'intervaltree >= 2.1.0',
'matplotlib >= 1.5.3',
'mido == 1.2.6',
'numpy >= 1.11.0',
'pandas >= 0.18.1',
'pretty_midi >= 0.2.6',
'python-rtmidi',
'scipy >= 0.18.1',
'tensorflow >= 1.1.0',
'wheel',
]
CONSOLE_SCRIPTS = [
'magenta.interfaces.midi.magenta_midi',
'magenta.interfaces.midi.midi_clock',
'magenta.models.drums_rnn.drums_rnn_create_dataset',
'magenta.models.drums_rnn.drums_rnn_generate',
'magenta.models.drums_rnn.drums_rnn_train',
'magenta.models.image_stylization.image_stylization_create_dataset',
'magenta.models.image_stylization.image_stylization_evaluate',
'magenta.models.image_stylization.image_stylization_finetune',
'magenta.models.image_stylization.image_stylization_train',
'magenta.models.image_stylization.image_stylization_transform',
'magenta.models.improv_rnn.improv_rnn_create_dataset',
'magenta.models.improv_rnn.improv_rnn_generate',
'magenta.models.improv_rnn.improv_rnn_train',
'magenta.models.melody_rnn.melody_rnn_create_dataset',
'magenta.models.melody_rnn.melody_rnn_generate',
'magenta.models.melody_rnn.melody_rnn_train',
'magenta.models.nsynth.wavenet.nsynth_generate',
'magenta.models.nsynth.wavenet.nsynth_save_embeddings',
'magenta.models.performance_rnn.performance_rnn_create_dataset',
'magenta.models.performance_rnn.performance_rnn_generate',
'magenta.models.performance_rnn.performance_rnn_train',
'magenta.models.pianoroll_rnn_nade.pianoroll_rnn_nade_create_dataset',
'magenta.models.pianoroll_rnn_nade.pianoroll_rnn_nade_generate',
'magenta.models.pianoroll_rnn_nade.pianoroll_rnn_nade_train',
'magenta.models.polyphony_rnn.polyphony_rnn_create_dataset',
'magenta.models.polyphony_rnn.polyphony_rnn_generate',
'magenta.models.polyphony_rnn.polyphony_rnn_train',
'magenta.models.rl_tuner.rl_tuner_train',
'magenta.models.sketch_rnn.sketch_rnn_train',
'magenta.scripts.convert_dir_to_note_sequences',
]
setup(
name='magenta',
version=__version__, # pylint: disable=undefined-variable
description='Use machine learning to create art and music',
long_description='',
url='https://magenta.tensorflow.org/',
author='Google Inc.',
author_email='opensource@google.com',
license='Apache 2',
# PyPI package information.
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries',
],
keywords='tensorflow machine learning magenta music art',
packages=find_packages(),
install_requires=REQUIRED_PACKAGES,
entry_points={
'console_scripts': ['%s = %s:console_entry_point' % (n, p) for n, p in
((s.split('.')[-1], s) for s in CONSOLE_SCRIPTS)],
},
include_package_data=True,
package_data={
'magenta': ['models/image_stylization/evaluation_images/*.jpg'],
},
)