-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
57 lines (50 loc) · 1.32 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
[project]
name = "rerun-loader-python-example-urdf"
version = "0.1.1"
description = "An example data-loader plugin that lets you view URDF files in Rerun"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"lxml>=5.3.1",
"numpy>=1.23",
"pillow>=11.1.0",
"pycollada>=0.9",
"pyyaml>=6.0.2",
"rerun-sdk>=0.22.0",
"scipy>=1.15.2",
"trimesh>=4.6.2",
"urdfdom-py",
"xacro>=1.13.3",
]
[project.scripts]
rerun-loader-urdf = "rerun_loader_python_example_urdf:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
lint.ignore = [
"D1",
"D202",
"D107",
"D203",
"D212",
"D401",
"D402",
"D415",
"D416",
"E501",
"TID252",
"UP007",
]
lint.select = [
"D", # pydocstyle codes https://www.pydocstyle.org/en/latest/error_codes.html
"E", # pycodestyle error codes: https://pycodestyle.pycqa.org/en/latest/intro.html#error-codes
"F", # Flake8 error codes https://flake8.pycqa.org/en/latest/user/error-codes.html
"I", # Isort
"TID", # flake8-tidy-imports
"W", # pycodestyle warning codes: https://pycodestyle.pycqa.org/en/latest/intro.html#error-codes
"UP", # pyupgrade (ensures idomatic code for supported python version)
]
line-length = 120
[tool.uv.sources]
urdfdom-py = { git = "https://github.com/ros/urdf_parser_py.git", rev = "ros2" }