forked from tyiannak/pyAudioAnalysis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (27 loc) · 1.41 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
34
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='pyAudioAnalysis',
version='0.1.4-naktinis',
description='Python Audio Analysis Library: Feature Extraction, Classification, Segmentation and Applications',
long_description='pyAudioAnalysis is a Python library covering a wide range of audio analysis tasks, including: feature extraction, classification, segmentation and visualization.',
url='https://github.com/tyiannak/pyAudioAnalysis',
author='Theodoros Giannakopoulos',
author_email='[email protected]',
license='Apache 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6'
],
keywords='audio analysis feature extraction classification segmentation visualization',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
package_dir={'pyAudioAnalysis': 'pyAudioAnalysis'},
package_data={'pyAudioAnalysis': ['data/svm*', 'data/gb*', 'data/et*', 'data/hmm*', 'data/knn*', 'data/rf*']},
install_requires=['numpy', 'matplotlib', 'scipy', 'sklearn', 'hmmlearn', 'simplejson', 'eyed3', 'pydub'],
)