-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 870 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 870 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
[project]
name = "robosuite_models"
version = "1.0.0"
authors = [
{ name="robosuite core team members", email="yifeng.zhu@utexas.edu" },
]
description = "A collection of robot models for robosuite simulation."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/ARISE-Initiative/robosuite_models"
Issues = "https://github.com/ARISE-Initiative/robosuite_models/issues"
[tool.black]
line-length = 120
target-version = ["py36", "py37", "py38", "py39", "py310"]
extend-exclude = "robosuite_models/((robots/assets))"
[tool.isort]
profile = "black"
line_length = 120
skip = ["__init__.py"]
filter_files = true
py_version = "all"
extend_skip = [
"robosuite_models/assets"
]