forked from facebookresearch/sound-spaces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (47 loc) · 1.04 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
# Copyright (c) Facebook, Inc. and its affiliates.
# All rights reserved.
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
from setuptools import setup
setup(
name='sound-spaces',
version='0.1.1',
packages=[
'soundspaces',
'ss_baselines'
],
install_requires=[
'torch',
'gym',
'numpy>=1.16.1',
'yacs>=0.1.5',
'numpy-quaternion>=2019.3.18.14.33.20',
'attrs>=19.1.0',
'opencv-python>=3.3.0',
'imageio>=2.2.0',
'imageio-ffmpeg>=0.2.0',
'scipy>=1.0.0',
'tqdm>=4.0.0',
'numba',
'Pillow',
'pydub',
'getch',
'matplotlib',
'librosa',
'torchsummary',
'gitpython',
'networkx',
'tqdm',
'notebook',
'moviepy',
'tensorflow',
'astropy',
'scikit-image'
],
extras_require={
'test': [
'pylint',
'pytest',
],
},
)