-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 828 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 828 Bytes
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
# setup.py: install script for offsim4rl
"""
to install offsim4rl and its dependencies for development work,
run this cmd from the root directory:
pip install -e .
"""
import setuptools
setuptools.setup(
name="offsim4rl",
version="0.1",
url="https://www.github.com/microsoft/rl-offline-simulation",
include_package_data=True,
packages=setuptools.find_packages(include=['offsim4rl']),
install_requires=[
"gym",
"h5py",
"joblib",
"matplotlib",
"seaborn",
"tensorboardX",
"torch>=1.10",
"tqdm"
],
extras_require={
'agents': [
# Forked version of the spinup library, with simplified dependencies.
"spinup @ git+https://github.com/sebastko/spinningup-simple-install.git#egg=spinup"
]
}
)