-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
50 lines (44 loc) · 990 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "l2r"
version = "0.0.2"
description = "a OpenAI gym environment for high performance autonomous racing"
readme = "README.md"
authors = [
"Jimmy Herman <[email protected]>",
"Jon Francis <[email protected]>"
]
license = "MIT"
repository = "https://github.com/learn-to-race/l2r"
keywords = [
"reinforcement learning",
"racing",
"robotics",
"machine learning",
"computer vision"
]
[[tool.poetry.source]]
name = "public"
url = "https://pypi.python.org/simple/"
[tool.poetry.dependencies]
python = "^3.7"
gast = "^0.5"
gym = "^0.22"
Pillow = "^7.2.0"
pyzmq = "^19.0"
matplotlib = "^3.4"
numpy = "^1.21"
requests = "^2.18"
PyYAML = "^6.0"
scipy = "^1.6"
websocket_client = "^1.3"
tqdm = "^4.64"
[tool.poetry.dev-dependencies]
black = "^22.6"
coverage = "^6.0"
pre-commit = "^2.14"
[tool.black]
line-length = 88
force-exclude = "l2r/constants.py"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"