-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
31 lines (30 loc) · 1.21 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
from setuptools import setup, find_packages
from os import path
setup(
name='sf2_loader',
packages=find_packages(),
version='1.25',
license='LGPLv2.1',
description=
'This is an easy-to-use soundfonts loader, player and audio renderer in python',
author='Rainbow-Dreamer',
author_email='[email protected]',
url='https://github.com/Rainbow-Dreamer/sf2_loader',
download_url=
'https://github.com/Rainbow-Dreamer/sf2_loader/archive/1.25.tar.gz',
keywords=['soundfont', 'sf2', 'python'],
install_requires=['pydub', 'musicpy', 'numpy', 'py'],
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)