-
Notifications
You must be signed in to change notification settings - Fork 81
/
setup.py
41 lines (37 loc) · 1.15 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
""" Setup script for sox. """
from setuptools import setup
with open("README.md") as fh:
long_description = fh.read()
if __name__ == "__main__":
setup(
name='sox',
description='Python wrapper around SoX.',
author='Rachel Bittner',
author_email='[email protected]',
url='https://github.com/rabitt/pysox',
download_url='https://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',
'typing-extensions >= 3.7.4.2 '
],
extras_require={
'tests': [
'pytest',
'pytest-cov',
'pytest-pep8',
'soundfile >= 0.11.0',
],
'docs': [
'sphinx==1.2.3', # autodoc was broken in 1.3.1
'sphinxcontrib-napoleon',
'sphinx_rtd_theme',
'numpydoc',
],
}
)