-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
82 lines (77 loc) · 1.71 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[metadata]
name = RLPack
description = Implementation of RL Algorithms
long_description = file: README.md
long_description_content_type = text/markdown
author = Kartik Rajeshwaran
author_email = [email protected]
license = MIT
license_file = LICENSE.md
platforms = posix
url = https://github.com/kartik2309/RLPack
keywords = reinforcement-learning pytorch gym cpp python
classifiers =
Programming Language :: Python :: 3,
License :: OSI Approved :: MIT License
Operating System :: POSIX
[options]
zip_safe = True
packages =
rlpack
rlpack._C
rlpack.actor_critic
rlpack.actor_critic.utils
rlpack.distributions
rlpack.dqn
rlpack.dqn.utils
rlpack.exploration
rlpack.exploration.utils
rlpack.models
rlpack.models.utils
rlpack.trainer
rlpack.utils
rlpack.utils.base
rlpack.utils.base.registers
package_dir =
rlpack
rlpack/_C
rlpack/actor_critic
rlpack/actor_critic/utils
rlpack/distributions
rlpack/dqn
rlpack/dqn/utils
rlpack/exploration
rlpack/exploration/utils
rlpack/models
rlpack/models/utils
rlpack/trainer
rlpack/utils
rlpack/utils/base
rlpack/utils/base/registers
python_requires = >=3.7
install_requires =
torch==1.13.1
numpy==1.24.0
gym==0.26.2
matplotlib==3.6.2
PyYAML==6.0
pygame==2.1.2
box2d-py==2.3.8
pybind11==2.10.2
mujoco==2.3.1
tensorboard==2.11.0
scripts = 'rlpack/bin/simulator'
[options.packages.find]
where = rlpack
[options.extras_require]
test =
pytest
pytest-icdiff
all =
%(test)s
[options.entry_points]
console_scripts =
RLPack_entry = rlpack.bin.simulator.__main__:main
[tool:pytest]
addopts = -rsxX -v
testpaths = Interface