-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 827 Bytes
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 827 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
[project]
name = "unicon"
version = "0.0.1"
description = ""
readme = "README.md"
requires-python = ">=3.6"
keywords = []
authors = [
{name = "Yunfeng Lin", email = "linyunfeng@sjtu.edu.cn" }
]
maintainers = [
{name = "Yunfeng Lin", email = "linyunfeng@sjtu.edu.cn" }
]
dependencies = [
"pyyaml",
"numpy",
]
[project.optional-dependencies]
dev = [
"check-manifest",
"sim-web-visualizer",
"torch",
"yourdfpy",
]
test = ["coverage"]
[project.urls]
"Homepage" = "https://github.com/creeperlin/unicon"
"Bug Tracker" = "https://github.com/creeperlin/unicon/issues"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["unicon*"]
[tool.yapf]
based_on_style = "google"
column_limit = 120
[tool.ruff]
line-length = 120