Skip to content

Commit 2e3d484

Browse files
committed
improved setup py
1 parent c75bd55 commit 2e3d484

1 file changed

Lines changed: 12 additions & 14 deletions

File tree

setup.py

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,19 @@
1-
import sys
21
from distutils.core import setup
32
from setuptools import find_packages
43

54
install_requires = [
6-
'decorator<5.0.0', # For networkx
7-
'networkx>=2.5',
8-
'numpy>1.7.0',
9-
'Pillow>=8.3.2',
10-
'pynput>=1.7.3',
11-
'pyzmq>=20.0.0',
12-
'av>=8.0.1',
13-
'sounddevice>=0.4.3',
14-
'soundfile>=0.10.3',
15-
'msgpack>1.0.0'
16-
]
17-
if sys.platform.startswith("win32"):
18-
install_requires.append('windows-capture-devices')
5+
'decorator<5.0.0', # For networkx
6+
'networkx>=2.5',
7+
'numpy>1.7.0',
8+
'Pillow>=8.3.2',
9+
'pynput>=1.7.3',
10+
'pyzmq>=20.0.0',
11+
'av>=8.0.1',
12+
'sounddevice>=0.4.3',
13+
'soundfile>=0.10.3',
14+
'msgpack>1.0.0',
15+
'windows-capture-devices; platform_system == "Windows"'
16+
]
1917

2018
setup(
2119
name='multisensor-pipeline',

0 commit comments

Comments
 (0)