forked from marl/pysox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.21 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
""" Setup script for sox. """
from setuptools import setup
import imp
version = imp.load_source('sox.version', 'sox/version.py')
with open("README.md", "r") as fh:
long_description = fh.read()
if __name__ == "__main__":
setup(
name='sox',
version=version.version,
description='Python wrapper around SoX.',
author='Rachel Bittner',
author_email='rachel.bittner@nyu.edu',
url='https://github.com/rabitt/pysox',
download_url='http://github.com/rabitt/pysox/releases',
packages=['sox'],
package_data={'sox': []},
long_description=long_description,
long_description_content_type="text/markdown",
keywords='audio effects SoX',
license='BSD-3-Clause',
install_requires=[
'numpy >= 1.9.0',
],
extras_require={
'tests': [
'pytest',
'pytest-cov',
'pytest-pep8',
'pysoundfile >= 0.9.0',
],
'docs': [
'sphinx==1.2.3', # autodoc was broken in 1.3.1
'sphinxcontrib-napoleon',
'sphinx_rtd_theme',
'numpydoc',
],
}
)