-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (33 loc) · 980 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
# -*- coding: utf-8 -*-
import os
def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
if __name__ == '__main__':
from distutils.core import setup
extra_files = package_files('pyAudioAnalyzer')
setup(
name='pyAudioAnalyzer',
version='0.2.1',
description='Python library for vibrational analysis of audio',
author='E. J. Wehrle',
url='https://github.com/e-dub/pyAudioAnalyzer',
package_data={'': extra_files},
license='gpl-3.0',
packages=['pyAudioAnalyzer'],
install_requires=[
'scipy',
'numpy',
'matplotlib',
'seaborn',
'playsound',
'pyfftw',
'librosa',
'gtts',
'sounddevice',
'pydub',
],
)