-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
52 lines (48 loc) · 1.59 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
from setuptools import setup
import imp
with open("README.md") as file:
long_description = file.read()
version = imp.load_source("spatialscaper.version", "spatialscaper/version.py")
setup(
name="spatialscaper",
version=version.version,
description="A library for soundscape synthesis and augmentation using spatial impulse responses inside specific rooms",
author="Iran R. Roman",
author_email="[email protected]",
url="",
download_url="http://github.com/iranroman/SELD-data-generator/releases",
packages=["spatialscaper"],
long_description=long_description,
long_description_content_type="text/markdown",
keywords="audio sound soundscape environmental ambisonics microphone array sound event detection localization",
license="Creative Commons Attribution",
classifiers=[
"License :: Creative Commons Attribution 4.0",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Sound/Audio :: Sound Synthesis",
],
install_requires=[
"numpy>=1.20",
"scipy>=1.10.1",
"librosa>=0.10.0",
"mat73>=0.60",
"fvcore>=0.1.5",
"pysofaconventions",
"pyroomacoustics",
"pandas",
"soundata",
"tqdm",
],
# pip install 'spatialscaper[test]'
extras_require={
"test": [
"coverage",
"pytest",
"black",
]
},
)