-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
45 lines (38 loc) · 1.02 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
38
39
40
41
42
43
44
45
"""Installation script for the 'leibnizgym' python package."""
from __future__ import absolute_import
from __future__ import print_function
from __future__ import division
from setuptools import setup, find_packages
# Minimum dependencies required prior to installation
INSTALL_REQUIRES = [
# generic
"numpy",
"matplotlib",
"tqdm",
"scipy>=1.2.0",
"termcolor",
# I/O
"pillow",
"pyyaml",
# RL
"gym",
"torch",
"hydra-core>=1.1",
"wandb",
'rl_games @ git+https://github.com/Denys88/rl_games'
]
# Installation operation
setup(
name="leibnizgym",
author="PAIR Lab",
version="0.0.1",
description="New interfaces and environments for high-speed robot learning in NVIDIA IsaacGym.",
keywords=["robotics", "rl"],
include_package_data=True,
python_requires=">=3.6.*",
install_requires=INSTALL_REQUIRES,
packages=find_packages("."),
classifiers=["Natural Language :: English", "Programming Language :: Python :: 3.7"],
zip_safe=False,
)
# EOF