forked from OpenMind/OM1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (78 loc) · 1.8 KB
/
pyproject.toml
File metadata and controls
85 lines (78 loc) · 1.8 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
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
83
84
85
[project]
name = "om1"
version = "0.1.0"
description = "OM1 - a modern agent and robotics runtime system"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"scipy",
"matplotlib",
"json5",
"pycdr2",
"eclipse-zenoh",
"audiosegment",
"pyaudio",
"openai>=1.59.5",
"pillow>=11.1.0",
"python-dotenv>=1.0.1",
"typer>=0.15.1",
"opencv-python",
"deepface",
"tf_keras",
"web3",
"numpy",
"cdp-sdk>=0.15.0",
"hid",
"cv_bridge",
"torch",
"torchvision",
"pyserial",
"fastapi>=0.110.0",
"uvicorn>=0.27.1",
"websockets>=12.0",
"om1-modules @ git+https://github.com/OpenmindAGI/om1-modules.git@5a7ae162a53b0456f7b7552219863969ca473c64",
"aiohttp>=3.9.3",
"python-multipart>=0.0.9",
"jinja2>=3.1.3",
"pydub>=0.25.1",
"pynput>=1.8.1",
"dimo-python-sdk @ git+https://github.com/openminddev/dimo-python-sdk.git@6b47fcd28654a4145cedee649a0999a8eb08a2f6",
]
[project.optional-dependencies]
dds = [
"cyclonedds==0.10.2"
]
[dependency-groups]
dev = [
"black>=24.10.0",
"isort>=5.13.2",
"pre-commit>=4.1.0",
"pytest>=8.3.4",
"pytest-asyncio>=0.25.2",
"ruff>=0.9.3",
]
[tool.pytest.ini_options]
pythonpath = ["src"]
asyncio_mode = "auto"
norecursedirs = ["src/unitree", "system_hw_test", "gazebo"]
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = "(.venv)|(/src/unitree)|(/gazebo)"
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 88
sources = ["src", "tests"]
skip_glob = [".venv*", "/src/unitree", "/gazebo"]
[tool.ruff]
line-length = 88
indent-width = 4
src = ["src"]
exclude = ["src/unitree","gazebo"]
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E203", "E501"]
fixable = ["ALL"]
unfixable = []
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"