-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 749 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name='avp_stream',
version='2.50',
description='This python package streams diverse tracking data available from AVP to any devices that can communicate with gRPC.',
author='Younghyo Park',
author_email='younghyo@mit.edu',
packages=find_packages(),
install_requires=[
'numpy', 'grpcio', 'grpcio-tools', 'matplotlib', 'opencv-python',
'aiortc', 'av', 'requests', 'pyyaml', 'mujoco', 'tqdm', 'scipy', 'pydub',
'websocket-client', 'gdown', 'flask'
],
extras_require={
},
entry_points={
'console_scripts': [
'setup-avp-wired=avp_stream.bridge_avp:main',
'avp=avp_stream.cli:main',
],
},
)