-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.cfg
47 lines (38 loc) · 998 Bytes
/
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
[metadata]
name = learning_racer
version = 1.7.1
author = Masato Kawamura
author_email = [email protected]
description = Deep reinforce learning for DIY self-driving car such as JetBot JetRacer.
long_description = file:README.md
url = https://github.com/masato-ka/airc-rl-agent
license = MIT
[options]
zip_safe = False
packages = find:
install_requires =
pyyaml
gym ~= 0.17.1
stable_baselines3 == 1.1.0 # JetPack pytorch version under 1.7.0(1.4.0) But Latest SB3 is upper 1.8.1.
gym-donkeycar @ git+https://github.com/tawnkramer/gym-donkeycar.git#egg=gym-donkeycar
[options.extras_require]
jetpack =
posix_ipc ~= 1.0.4
osx =
opencv-python
torch == 1.4.0
torchvision == 0.5.0
ubuntu =
opencv-python
torch == 1.4.0
torchvision == 0.5.0
windows =
opencv-python
torch == 1.4.0
torchvision == 0.5.0
window-gpu =
opencv-python
torchvision == 0.5.0
[options.entry_points]
console_scripts =
racer = learning_racer.racer:racer_func