forked from tyiannak/pyAudioAnalysis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (30 loc) · 1.43 KB
/
Copy pathsetup.py
File metadata and controls
40 lines (30 loc) · 1.43 KB
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
from setuptools import setup, find_packages
from codecs import open
from os import path
# Taken from
# https://raw.githubusercontent.com/tyiannak/pyAudioAnalysis/b53dcf54eb4e4bf73fe6211bef1912a913da30ff/setup.py.
here = path.abspath(path.dirname(__file__))
setup(
name='pyAudioAnalysis',
version='0.1.3',
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='tyiannak@gmail.com',
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 :: 2',
'Programming Language :: Python :: 2.7'
],
keywords='audio analysis feature extraction classification segmentation visualization',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=['numpy', 'matplotlib', 'scipy', 'sklearn', 'hmmlearn', 'simplejson', 'eyed3', 'pydub'],
#package_data={
# 'pyAudioAnalysis': ['data/*'],
#},
)