-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (97 loc) · 2.21 KB
/
pyproject.toml
File metadata and controls
106 lines (97 loc) · 2.21 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[tool.uv]
package = false
[tool.pytest.ini_options]
norecursedirs = ["deps", ".git", ".venv", "build", "install", "log", "_meta"]
addopts = "-ra --strict-markers --import-mode=importlib"
[project]
name = "arena-rosnav"
version = "0.1.0"
description = ""
authors = [{ name = "Volodymyr Shcherbyna", email = "dev@voshch.dev" }]
maintainers = [{ name = "Volodymyr Shcherbyna", email = "dev@voshch.dev" }]
requires-python = "==3.12.*"
dependencies = [
"pip",
"colcon-common-extensions",
"pytest",
"lark",
"rosdep",
"PyYAML",
"filelock",
"scipy",
"empy<4",
"defusedxml",
"lxml",
"netifaces",
"watchdog",
"transforms3d",
"opencv-python",
"attrs",
"shapely",
"numpy",
"setuptools<80",
"pydantic",
"pillow",
"requests",
"usd-core",
"cattrs",
"openai",
"pycollada",
"google-genai",
"chromadb",
"colourings",
"aiofiles",
"hypothesis",
"pathfinding3d>=0.7.2",
"transformers>=5.5.4",
"diffusers>=0.37.1",
"rasterio>=1.5.0",
"pyglet>=2.1.14",
]
[build-system]
requires = ["setuptools<80", "wheel"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"aiomonitor>=0.7.1",
]
[tool.ruff]
target-version = "py312"
line-length = 320
src = [
"task_generator/task_generator",
"arena_bringup/arena_bringup",
"arena_robots/arena_robots/arena_robots",
"arena_simulation_setup/src/arena_simulation_setup",
"utils/arena_rclpy_mixins/arena_rclpy_mixins",
"utils/rviz_utils/rviz_utils",
]
extend-exclude = [
"_meta",
"arena_tools",
"arena_isaac",
"arena_evaluation",
"arena_training",
"arena_robots/deps",
".venv",
"**/launch",
"**/*.launch.py",
"**/scripts",
"**/setup.py",
"**/tests",
"**/test",
]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "ANN", "PYI"]
ignore = ["E501", "E402", "F841", "E731", "PYI051", "E741"]
[tool.ruff.lint.per-file-ignores]
"arena_simulation_setup/**/*.py" = ["UP"]
[tool.ruff.lint.flake8-annotations]
suppress-none-returning = true
mypy-init-return = true
allow-star-arg-any = true
[tool.ruff.format]
quote-style = "preserve"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "lf"