-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
59 lines (56 loc) · 1.6 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
import setuptools
import sys
version = {}
with open('museflow/version.py') as f:
exec(f.read(), version)
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(
name="museflow",
version=version['__version__'],
author="Ondřej Cífka",
author_email='[email protected]',
description="Music sequence learning toolkit",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/cifkao/museflow',
packages=setuptools.find_packages(),
entry_points={
'console_scripts': [
'museflow = museflow.main:main'
]
},
python_requires='>=3.6',
install_requires=[
'cached_property',
'coloredlogs',
'confugue',
'lmdb',
'numpy',
'pretty_midi',
'pyyaml',
'note-seq',
],
extras_require={
'gpu': [
'tensorflow-gpu<2.0',
],
'nogpu': [
'tensorflow<2.0',
]
},
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research'
],
)