-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
40 lines (29 loc) · 1013 Bytes
/
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
#!/usr/bin/env python
import imp
from setuptools import setup, find_packages
version = imp.load_source('aupyom.version', 'aupyom/version.py')
setup(name='aupyom',
version=version.version,
packages=find_packages(),
install_requires=[
'future',
'numpy',
'librosa',
'sounddevice',
],
extras_require={
'doc': ['sphinx', ],
},
setup_requires=['setuptools_git >= 0.3', ],
exclude_package_data={'': ['README', '.gitignore']},
package_data={'': ['example_data/*']},
author='Pierre Rouanet',
author_email='[email protected]',
description='Real-time Audio time-scale and pitch modification.',
url='https://github.com/pierre-rouanet/aupyom',
license='GNU GENERAL PUBLIC LICENSE Version 3',
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering", ],
)