-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
53 lines (50 loc) · 1.35 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
requires = [
'docopt',
'ansicolors',
'matplotlib',
'scipy',
'numpy',
'aubio',
]
extras = {
}
setup(name='audiohealth',
version='0.5.0',
description='',
long_description='',
license="AGPL 3",
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Communications",
"Topic :: Scientific/Engineering :: Information Analysis",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS"
],
author='The Hiveeyes Developers',
author_email='[email protected]',
url='https://github.com/hiveeyes/audiohealth',
packages=find_packages(),
include_package_data=True,
package_data={
},
zip_safe=False,
install_requires=requires,
extras_require=extras,
dependency_links=[
],
entry_points={
'console_scripts': [
'audiohealth = audiohealth:main',
],
},
)