-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
63 lines (54 loc) · 1.12 KB
/
setup.cfg
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[metadata]
name = offline-mbrl
author = Felipe Peter
author_email = [email protected]
description = A library for offline model-based reinforcement learning.
long_description = file:README.md
long_description_content_type = text/markdown
url = https://github.com/Mr-Pepe/offline-model-based-rl
[options]
python_requires = >=3.9
packages = find:
package_dir =
=src
install_requires =
torch
numpy
gym==0.23.1 # d4rl requires <0.25.0 but 0.24.1 is apparently buggy and recommends up- or downgrading
d4rl @ git+https://github.com/rail-berkeley/d4rl@master#egg=d4rl
matplotlib
pandas
seaborn
patchelf
joblib
tensorboard
ax-platform
gpytorch<1.9 # Can be removed after https://github.com/pytorch/botorch/issues/1370
pydantic
[options.packages.find]
where = src
[options.extras_require]
dev =
tox
%(lint)s
%(test)s
%(doc)s
%(build)s
lint =
isort
black
mypy
pylint
pytest
pydocstyle[toml]
types-setuptools
test =
pytest
pytest-cov
coverage[toml]
pytest-randomly
doc =
sphinx
sphinx_rtd_theme
build =
build[virtualenv]