-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathsetup.py
28 lines (26 loc) · 886 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
from setuptools import setup, find_packages
long_description = open('README.rst').read()
setup(
name='sed_eval',
version='0.2.1',
description='Evaluation toolbox for Sound Event Detection',
author='Toni Heittola',
author_email='toni.heittola@gmail.com',
url='https://github.com/TUT-ARG/sed_eval',
packages=find_packages(),
long_description=long_description,
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
'Development Status :: 5 - Production/Stable',
"Intended Audience :: Developers",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Programming Language :: Python :: 2.7",
],
keywords=['audio analysis', 'sound event detection', 'dsp'],
license='MIT',
install_requires=[
'numpy >= 1.7.0',
'dcase_util >= 0.2.4'
],
)