We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 286d4bc + 2e3d484 commit 2ebe34dCopy full SHA for 2ebe34d
1 file changed
setup.py
@@ -1,21 +1,19 @@
1
-import sys
2
from distutils.core import setup
3
from setuptools import find_packages
4
5
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')
+ 'decorator<5.0.0', # For networkx
+ 'networkx>=2.5',
+ 'numpy>1.7.0',
+ 'Pillow>=8.3.2',
+ 'pynput>=1.7.3',
+ 'pyzmq>=20.0.0',
+ 'av>=8.0.1',
+ 'sounddevice>=0.4.3',
+ 'soundfile>=0.10.3',
+ 'msgpack>1.0.0',
+ 'windows-capture-devices; platform_system == "Windows"'
+]
19
20
setup(
21
name='multisensor-pipeline',
0 commit comments