-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
executable file
·30 lines (26 loc) · 996 Bytes
/
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
# Copyright (c) 2018, The SenseAct Authors.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
from setuptools import setup, find_packages
import sys, subprocess
if sys.version_info.major != 3:
print('This Python is only compatible with Python 3, but you are running '
'Python {}. The installation will likely fail.'.format(sys.version_info.major))
setup(name='senseact',
packages=[package for package in find_packages()
if package.startswith('senseact') or package.startswith('test')],
install_requires=[
'gym', # 0.10.5
'matplotlib',
'numpy',
'opencv-python>=3.3.1',
'psutil',
'pyserial',
],
description='Kindred SenseAct framework',
author='The SenseAct Team',
url='https://github.com/kindredresearch/SenseAct',
author_email='',
version='0.1.2')