-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
43 lines (40 loc) · 1.1 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
#!/usr/bin/env python
import setuptools
if __name__ == "__main__":
setuptools.setup(
name="rir-generator",
version="0.2.0",
description="Room Impulse Response Generator.",
author="Nils Werner",
author_email="[email protected]",
license="MIT",
packages=setuptools.find_packages(),
setup_requires=["cffi>=1.1.0"],
install_requires=[
"numpy>=1.6",
"scipy>=0.13.0",
"cffi>=1.1.0",
],
cffi_modules=[
"rir_generator/_rir/build.py:rir_generator",
],
extras_require={
"tests": [
"pytest",
"pytest-cov",
"pytest-black",
"sphinx",
"sphinxcontrib-napoleon",
"sphinx_rtd_theme",
"numpydoc",
],
"docs": [
"sphinx",
"sphinxcontrib-napoleon",
"sphinxcontrib-bibtex",
"sphinx_rtd_theme",
"numpydoc",
],
},
zip_safe=False,
)