forked from carlthome/python-audio-effects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1.01 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
# coding=utf-8
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name='pysndfx',
version='0.3.6',
description='Apply audio effects such as reverb and EQ directly to audio files or NumPy ndarrays.',
url='https://github.com/carlthome/python-audio-effects',
author='Carl Thomé',
author_email='[email protected]',
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Multimedia :: Sound/Audio',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
keywords='audio music sound',
packages=['pysndfx'],
install_requires=['numpy'],
extras_require={'test': ['librosa']},
)