-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
234 lines (213 loc) · 4.98 KB
/
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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mbodied"
dynamic = ["version"]
description = 'Embodied AI'
readme = "README.md"
requires-python = ">=3.9"
license = "apache-2.0"
keywords = []
authors = [{ name = "Mbodi Team", email = "[email protected]" }]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"anthropic",
"art",
"backoff",
"datasets",
"gymnasium",
"h5py",
"jsonref",
"numpy>=1.26.4",
"openai",
"pillow",
"pydantic",
"gradio",
"gradio_client",
"rich-click>=1.8.3",
"compress-pickle>=2.1.0",
"ruamel-yaml>=0.18.6",
]
[project.optional-dependencies]
extras = ["xarm-python-sdk", "opencv-python", "torch", "transformers"]
audio = [
"pyaudio",
"openai-whisper",
]
all = [
"xarm-python-sdk",
"opencv-python",
"torch",
"transformers",
"pyaudio",
"openai-whisper",
"open3d",
"timm",
"torchvision",
"wandb",
]
[project.urls]
Documentation = "https://github.com/mbodiai/embodied-agents#readme"
Issues = "https://github.com/mbodiai/embodied-agents/issues"
Source = "https://github.com/mbodiai/embodied-agents"
[project.scripts]
mbodied = "mbodied.agents.cli:cli"
[tool.hatch.version]
path = "mbodied/__about__.py"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel.force-include]
"resources" = "mbodied/resources"
[tool.hatch.envs.default]
python = "3.11"
path = ".mbodied/envs/mbodied"
dependencies = ["pytest", "pytest-mock", "pytest-asyncio"]
[tool.hatch.envs.default.env-vars]
[tool.hatch.envs.conda]
type = "conda"
python = "310" # Python version 3.10
command = "conda" # Options: conda, mamba, micromamba
conda-forge = false # Use conda-forge index
environment-file = "environment.yml" # Specify environment file
prefix = ".venv/" # Create environment in .venv/ folder
[tool.hatch.envs.default.scripts]
test = "pytest -vv --ignore third_party {args:tests}"
test-cov = "coverage run -m pytest {args:tests}"
cov-report = ["- coverage combine", "coverage report"]
cov = ["test-cov", "cov-report"]
[[tool.hatch.envs.all.matrix]]
python = ["3.10", "3.11", "3.12"]
[tool.hatch.envs.types]
dependencies = ["mypy>=1.0.0"]
[tool.hatch.envs.types.scripts]
check = "mypy --install-types --non-interactive {args:mbodied/ tests}"
[tool.coverage.run]
source_pkgs = ["mbodied", "tests"]
branch = true
parallel = true
omit = ["mbodied/__about__.py"]
[tool.coverage.paths]
mbodied = ["mbodied/"]
tests = ["tests"]
[tool.coverage.report]
exclude_lines = ["no cov", "if __name__ == .__main__.:", "if TYPE_CHECKING:"]
[tool.ruff]
line-length = 120
indent-width = 4
target-version = "py310"
[tool.ruff.lint]
extend-unsafe-fixes = ["ALL"]
# List of rules: https://docs.astral.sh/ruff/rules
select = [
# flake8-builtins
"A",
# flake8-commas
"COM812",
# flake8-comprehensions
"C4",
# pydocstyle
"D",
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# flake8-implicit-str-concat
"ISC",
# pep8-naming
"N",
# flake8-annotations
"ANN",
# flake8-async
"ASYNC",
# flake8-bandid selected
"S",
# flake8-print
"T20",
# flake8-return
"RET",
# flake8-simplify
"SIM",
# flake8-unused-arguments
"ARG",
# flake8-use-pathlib
"PTH",
# eradicate
"ERA",
# pandas-vet
"PD",
# Import sort
"I",
# avoid shadowing
"PLW",
]
ignore = [
"D100",
"D101",
"D104",
"D106",
# missing-type-self
"ANN101",
# missing-type-cls
"ANN102",
# missing-type-kwargs
"ANN003",
# utf-8 encoding skip
"UP009",
# Missing return type annotation for special method `__init__`
"ANN204",
# Star-arg unpacking after a keyword argument is strongly discouraged
"B026",
# Missing type annotation for function argument `self`
"ANN001",
# Dynamically typed expressions (typing.Any) are disallowed in `wrapper`
"ANN401",
# We don't need docstrings for every method
"ANN202",
"D107",
"D102",
"D103",
# Inline lambdas
"E731",
# Sometimes we need List and Tuple
"UP006",
"UP035",
"ANN002",
]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
[tool.ruff.format]
docstring-code-format = true
quote-style = "double"
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"
[tool.uv]
dev-dependencies = [
"perftest>=0.0.2",
"pytest-asyncio>=0.24.0",
"pytest-mock>=3.14.0",
"pytest>=8.3.3",
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"**/{tests,docs}/*" = ["ALL"]
"**__init__.py" = ["F401"]