-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
41 lines (40 loc) · 1.32 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
from setuptools import find_packages, setup
setup(
name="sound_field_analysis",
url="https://github.com/AppliedAcousticsChalmers/sound_field_analysis-py/",
version=open("sound_field_analysis/_version.py", mode="r", encoding="utf-8")
.readlines()[-1]
.split()[-1]
.strip("\"'"),
license="MIT",
license_file="LICENSE",
description="Analyze, visualize and process sound field data recorded by "
"spherical microphone arrays.",
long_description=open("README.rst", mode="r", encoding="utf-8").read(),
keywords="sound field analysis spherical microphone array",
author="Chalmers University of Technology / Jens Ahrens",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Multimedia :: Sound/Audio",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
install_requires=[
"scipy",
"numpy",
"pysofaconventions",
],
package_data={
"examples": ["examples"],
},
extras_require={
"examples": ["jupyter"],
"plotting": ["plotly"],
"testing": ["pytest"],
},
packages=find_packages(),
)