-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
37 lines (35 loc) · 1.11 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
# Copyright (c) 2020 by BionicDL Lab. All Rights Reserved.
# !/usr/bin/python
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
setup(
name='DeepClaw',
version='1.0.3',
description=(
'a reconfigurable benchmark of robotic hardware and task hierarchy for robot learning'
),
author='BionicDL',
author_email='[email protected]',
maintainer='Haokun W., Fang W., Xiaobo L., Yanglin H.',
maintainer_email='[email protected]',
license='MIT License',
packages=find_packages(),
platforms=["all"],
url='https://bionicdl-sustech.github.io/DeepClawBenchmark/',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries'
],
install_requires=[
'numpy==1.18.2',
'matplotlib==3.2.1',
'opencv_contrib_python==4.1.2.30',
'PyYAML',
'pyrealsense2==2.34.0.1470',
'scipy==1.4.1',
'tqdm==4.46.0'
],
)