-
Notifications
You must be signed in to change notification settings - Fork 56
/
setup.py
54 lines (50 loc) · 1.86 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
54
from setuptools import setup
import imp
with open('README.md') as file:
long_description = file.read()
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='[email protected]',
url='https://github.com/justinsalamon/scaper',
download_url='http://github.com/justinsalamon/scaper/releases',
packages=['scaper'],
long_description=long_description,
long_description_content_type='text/markdown',
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.4.0',
'jams>=0.3.2',
'numpy>=1.13.3',
"soxbindings>=1.2.2;platform_system!='Windows'",
'pyloudnorm',
'soundfile',
],
extras_require={
'docs': [
'sphinx', # autodoc was broken in 1.3.1
'sphinx_rtd_theme',
'sphinx_issues',
],
'tests': ['backports.tempfile', 'pytest', 'pytest-cov', 'tqdm']
}
)