forked from shanereetz/sage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1001 Bytes
/
Copy pathpyproject.toml
File metadata and controls
52 lines (46 loc) · 1001 Bytes
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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sage"
version = "0.1.0"
description = "SAGE: Sim2Real Actuator Gap Estimator for Robot Performance Evaluation"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "SAGE Team"},
]
keywords = ["robotics", "simulation", "isaac-sim", "motion-analysis", "sim-to-real"]
dependencies = [
"numpy",
"matplotlib",
"scipy",
"pandas>=1.3.0",
"xlsxwriter",
"pyyaml",
]
[tool.setuptools]
packages = ["sage"]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
]
[tool.ruff.lint.isort]
known-third-party = [
"isaacsim.core.api",
"omni.replicator.core",
"pxr",
"omni.kit",
"warp",
"carb",
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"