-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (31 loc) · 982 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
31
32
33
34
35
# setup.py
import os
from setuptools import setup, find_packages
# Get version from __version__.py
cu_path = os.path.abspath(os.path.dirname(__file__))
about = {}
with open(os.path.join(cu_path, 'robolearn_envs', '__version__.py'), 'r') as f:
exec(f.read(), about)
# Get description from README
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='robolearn_envs',
version=about['__version__'],
author="Domingo Esteban",
author_email="[email protected]",
description="A python package that contains some OpenAIGym-like robot "
"environments in PyBullet.",
long_description=long_description,
packages=find_packages(),
url="https://github.com/domingoesteban/robolearn_envs",
install_requires=[
'gym',
'pybullet',
'numpy',
'matplotlib',
'transforms3d',
'sympy', # Because transforms3d doesn't install it
],
include_package_data=True,
)