-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.11 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (40 loc) · 1.11 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "kincheckapi"
version = "0.5.3"
description = "Agent-friendly kinematics validation for CadIR assemblies"
requires-python = ">=3.10"
dependencies = [
"mujoco>=3.3,<4",
"python-fcl>=0.7.0",
"rtree>=1.3,<2",
"trimesh>=4.0,<5",
]
[project.optional-dependencies]
test = ["pytest>=8"]
addon = ["simplecadapi>=2.1.3b3,<2.1.4", "packaging>=23.2"]
[project.scripts]
kincheck = "kincheckapi.cli:main"
kincheck-skill-pack = "kincheckapi.auto_tools.skill_pack:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
kincheckapi = [
"_viewer_static/*.html",
"_viewer_static/*.css",
"_viewer_static/*.js",
"_viewer_static/vendor/*.js",
"_viewer_static/vendor/*.txt",
"_viewer_static/vendor/addons/controls/*.js",
"_viewer_static/vendor/addons/loaders/*.js",
"_skill_en/**/*.md",
"_skill_zh/**/*.md",
]
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = ["tests"]
pythonpath = ["src", "."]
[tool.uv.sources]
simplecadapi = { path = "../CADIR", editable = true }