-
Notifications
You must be signed in to change notification settings - Fork 542
Expand file tree
/
Copy pathpython_packages-isolated.toml
More file actions
106 lines (100 loc) · 4.59 KB
/
Copy pathpython_packages-isolated.toml
File metadata and controls
106 lines (100 loc) · 4.59 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
[isaacsim-asset-isolated]
# pyproject.toml
pyproject.description = "Isaac Sim isolated modules for asset import, export and management"
pyproject.keywords = ["nvidia", "omniverse", "isaacsim", "asset", "import", "export", "management"]
pyproject.classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
pyproject.license = "Apache-2.0"
pyproject.license-files = ["APACHE-2.0-LICENSE.txt"]
pyproject.dependencies.all = [
"isaacsim-robot-schema==${version}",
"usd-exchange==2.3.0",
"urdf-usd-converter==0.3.2",
"mujoco==3.11.0",
"newton-usd-schemas==0.4.1",
"mujoco-usd-converter==0.5.0",
"usd-optimize>=1.1.0",
]
# inventory (relative to the build config)
inventory.includes.all = [
[ "APACHE-2.0-LICENSE.txt", "../.." ],
[ "exts/isaacsim.asset.exporter.urdf/isaacsim/asset/exporter/urdf/*", "./asset/exporter/urdf" ],
[ "exts/isaacsim.asset.importer.mjcf/isaacsim/asset/importer/mjcf/*", "./asset/importer/mjcf" ],
[ "exts/isaacsim.asset.importer.urdf/isaacsim/asset/importer/urdf/*", "./asset/importer/urdf" ],
[ "exts/isaacsim.asset.importer.utils/pip_prebundle/isaacsim/asset/importer/utils/*", "./asset/importer/utils" ],
[ "exts/isaacsim.asset.transformer/pip_prebundle/isaacsim/asset/transformer/*", "./asset/transformer" ],
[ "exts/isaacsim.asset.transformer.rules/isaacsim/asset/transformer/rules/*", "./asset/transformer/rules" ],
[ "exts/isaacsim.asset.transformer.rules/data/isaacsim_structure.json", "./asset/transformer/rules/data" ],
]
inventory.excludes.all = [
"exts/isaacsim.asset.exporter.urdf/isaacsim/asset/exporter/urdf/tests",
"exts/isaacsim.asset.importer.mjcf/isaacsim/asset/importer/mjcf/tests",
"exts/isaacsim.asset.importer.urdf/isaacsim/asset/importer/urdf/tests",
"exts/isaacsim.asset.importer.utils/pip_prebundle/isaacsim/asset/importer/utils/tests",
"exts/isaacsim.asset.transformer/pip_prebundle/isaacsim/asset/transformer/tests",
"exts/isaacsim.asset.transformer.rules/isaacsim/asset/transformer/rules/tests",
]
# wheel specifications
wheel.platforms = {"linux-x86_64" = "any", "windows-x86_64" = "any", "linux-aarch64" = "any"}
wheel.python = "py3"
[isaacsim-robot-schema]
# pyproject.toml
pyproject.description = "Isaac Sim USD robot schema helpers and applied schema utilities"
pyproject.keywords = ["nvidia", "isaac", "sim", "usd", "robot", "schema"]
pyproject.classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
pyproject.license = "Apache-2.0"
pyproject.license-files = ["APACHE-2.0-LICENSE.txt"]
pyproject.dependencies.all = [
"usd-exchange==2.3.0",
]
templates.pyproject = """
[build-system]
requires = [ "setuptools >= 78.1.1" ]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
include = [
"omni.isaac.IsaacSensorSchema",
"omni.isaac.RangeSensorSchema",
"usd.schema.isaac",
"usd.schema.isaac.*",
]
[tool.setuptools.package-data]
"omni.isaac.IsaacSensorSchema" = ["py.typed"]
"omni.isaac.RangeSensorSchema" = ["py.typed"]
"usd.schema.isaac" = ["py.typed"]
"usd.schema.isaac.range_sensor_schema" = ["*.usda", "plugInfo.json"]
"usd.schema.isaac.robot_schema" = ["*.usda", "plugInfo.json"]
"usd.schema.isaac.sensor_schema" = ["*.usda", "plugInfo.json"]
[tool.setuptools.data-files]
"share/isaacsim/packages/isaacsim_robot_schema" = [
"share/isaacsim/packages/isaacsim_robot_schema/package.json",
"share/isaacsim/packages/isaacsim_robot_schema/VERSION",
]
[project.scripts]
isaacsim = "isaacsim:main"
"""
# inventory (relative to the build config)
inventory.includes.all = [
[ "APACHE-2.0-LICENSE.txt", "../.." ],
[ "exts/isaacsim.robot.schema/pip_prebundle/usd/schema/isaac/*", "../usd/schema/isaac" ],
[ "exts/isaacsim.robot.schema/pip_prebundle/omni/isaac/IsaacSensorSchema/*", "../omni/isaac/IsaacSensorSchema" ],
[ "exts/isaacsim.robot.schema/pip_prebundle/omni/isaac/RangeSensorSchema/*", "../omni/isaac/RangeSensorSchema" ],
[ "exts/isaacsim.robot.schema/pip_prebundle/share/isaacsim/packages/isaacsim_robot_schema/*", "../../share/isaacsim/packages/isaacsim_robot_schema" ],
]
inventory.excludes.all = [
"exts/isaacsim.robot.schema/pip_prebundle/usd/schema/isaac/__pycache__",
"exts/isaacsim.robot.schema/pip_prebundle/omni/isaac/IsaacSensorSchema/__pycache__",
"exts/isaacsim.robot.schema/pip_prebundle/omni/isaac/RangeSensorSchema/__pycache__",
]
# wheel specifications
wheel.platforms = {"linux-x86_64" = "any", "windows-x86_64" = "any", "linux-aarch64" = "any"}
wheel.python = "py3"