forked from Rainbow-Dreamer/musicpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 1.35 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
from setuptools import setup, find_packages
from os import path
setup(
name='musicpy',
packages=find_packages(),
package_data={'musicpy': ['./*']},
version='4.73',
license='LGPLv2.1',
description=
'Musicpy is a music programming language in Python designed to write music in very handy syntax through music theory and algorithms.',
author='Rainbow-Dreamer',
author_email='[email protected]',
url='https://github.com/Rainbow-Dreamer/musicpy.git',
download_url=
'https://github.com/Rainbow-Dreamer/musicpy/archive/4.73.tar.gz',
keywords=[
'music language', 'use codes to write music', 'music language for AI'
],
install_requires=['mido', 'midiutil', 'pygame'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
include_package_data=True)