-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
56 lines (49 loc) · 1.37 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
"""
Just a regular `setup.py` file.
Author: Nikolay Lysenko
"""
import os
from setuptools import setup, find_packages
current_dir = os.path.abspath(os.path.dirname(__file__))
description = 'Composition of music with reinforcement learning.'
with open(os.path.join(current_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='rl-musician',
version='0.4.6',
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Nikolay-Lysenko/rl-musician',
author='Nikolay Lysenko',
author_email='[email protected]',
license='MIT',
keywords=[
'ai_music',
'algorithmic_composition',
'counterpoint',
'reinforcement_learning'
],
packages=find_packages(),
package_data={
'rlmusician': [
'configs/default_config.yml',
'configs/sinethesizer_presets.yml'
]
},
python_requires='>=3.6',
install_requires=[
'gym',
'numpy',
'pretty-midi',
'PyYAML',
'sinethesizer>=0.6,<0.7',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Artistic Software',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
]
)