-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.1 KB
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ironengine-rl"
version = "0.1.0"
description = "Simulation-first RL runtime inspired by Chapter 7 Figure 7.1 for ARMSmart-compatible robots"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "DunknowCoding" }
]
dependencies = []
[project.optional-dependencies]
llm = [
"requests>=2.31",
]
hardware = [
"pyserial>=3.5",
"opencv-python>=4.9",
]
torch = [
"torch>=2.2",
]
examples = [
"requests>=2.31",
"torch>=2.2",
"pyserial>=3.5",
"opencv-python>=4.9",
]
all = [
"requests>=2.31",
"torch>=2.2",
"pyserial>=3.5",
"opencv-python>=4.9",
]
[project.scripts]
ironengine-rl = "ironengine_rl.cli:main"
ironengine-rl-diagnose = "ironengine_rl.diagnostics:main"
ironengine-rl-describe = "ironengine_rl.describe:main"
ironengine-rl-scaffold-hardware = "ironengine_rl.scaffold:main"
ironengine-rl-validate = "ironengine_rl.validate:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]