-
Notifications
You must be signed in to change notification settings - Fork 70
/
setup.cfg
56 lines (48 loc) · 1.04 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
[metadata]
name = godot_rl
description = A Deep Reinforcement Learning package for the Godot game engine
author = Edward Beeching
license = MIT
license_file = LICENSE
platforms = unix, linux, osx, cygwin, win32
classifiers =
Programming Language :: Python :: 3.8
[options]
packages = find:
install_requires =
numpy<2
tensorboard
wget
huggingface_hub>=0.10
gymnasium
stable-baselines3>=2.0.0
huggingface_sb3
onnx
onnxruntime
python_requires = >=3.8
zip_safe = no
[options.entry_points]
console_scripts =
gdrl = godot_rl.main:main
gdrl.interactive = godot_rl.core.godot_env:interactive
gdrl.download_editor = godot_rl.download_utils.download_godot_editor:download_editor
gdrl.env_from_hub = godot_rl.download_utils.from_hub:main
[options.extras_require]
test =
pytest>=6.0
pytest-xdist
dev =
pytest>=6.0
pytest-xdist
black
flake8
isort
pyyaml>=5.3.1
sf =
sample-factory
rllib =
ray[rllib]
cleanrl =
wandb
[flake8]
ignore = E203, E501, E741, W503, W605