-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
33 lines (32 loc) · 1.04 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
from setuptools import setup, find_packages
version = '0.2.0'
setup(
name='synthesizer',
version=version,
description="A simple virtual analog synthesizer.",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Topic :: Multimedia :: Sound/Audio :: Sound Synthesis",
],
keywords='analog synthesizer',
author='Yuma Mihira',
author_email='info@yurax2.com',
url='https://github.com/yuma-m/synthesizer',
license='GPLv3',
packages=find_packages(exclude=['test']),
include_package_data=True,
zip_safe=True,
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
test_suite='nose.collector',
install_requires=[
'enum34>=1.1.6',
"numpy>=1.13.3",
# TODO: commented out to build document on ReadTheDocs
# 'PyAudio>=0.2.11',
'scipy>=0.19.1',
],
)