forked from justinsalamon/scaper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (46 loc) · 1.78 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
from setuptools import setup, find_packages
import imp
version = imp.load_source('scaper.version', 'scaper/version.py')
setup(
name='scaper',
version=version.version,
description='A library for soundscape synthesis and augmentation',
author='Justin Salamon & Duncan MacConnell',
author_email='justin.salamon@gmail.com',
url='https://github.com/justinsalamon/scaper',
download_url='http://github.com/justinsalamon/scaper/releases',
packages=['scaper'],
package_data={'scaper': ['namespaces/sound_event.json']},
long_description='A library for soundscape synthesis and augmentation',
keywords='audio sound soundscape environmental dsp mixing',
license='BSD-3-Clause',
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Sound/Audio :: Sound Synthesis",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
install_requires=[
'sox>=1.3.0',
'jams==0.2.2',
'pandas==0.19.2'
],
extras_require={
'docs': [
'sphinx==1.2.3', # autodoc was broken in 1.3.1
'sphinxcontrib-napoleon',
'sphinx_rtd_theme',
'numpydoc',
],
'tests': ['backports.tempfile', 'pysoundfile']
}
)