forked from thomaschabal/transporter-nets-torch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (23 loc) · 822 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
"""Setup."""
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.md'), encoding='utf-8').read()
except IOError:
README = ''
try:
install_requires = open(os.path.join(
here, 'requirements.txt'), encoding='utf-8').read().split("\n")
except IOError:
install_requires = []
setup(
name='ravens_torch',
version='0.1',
description='PyTorch adaptation of Ravens - a collection of simulated tasks in PyBullet for learning vision-based robotic manipulation.',
long_description='\n\n'.join([README]),
long_description_content_type='text/markdown',
url='https://github.com/thomaschabal/transporter-nets-torch',
packages=find_packages(),
install_requires=install_requires,
)