forked from HansZ8/RoboJuDo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 900 Bytes
/
pyproject.toml
File metadata and controls
35 lines (29 loc) · 900 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "RoboJuDo"
version = "1.5.0"
description = "RoboJuDo: A plug-and-play deploy framework for robots. Just deploy, just do."
authors = [
{ name = "HansZ8", email = "GDDG80@outlook.com" }
]
readme = "README.md"
requires-python = ">=3.11"
dynamic = ["dependencies"]
[tool.setuptools]
packages = ["robojudo"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.optional-dependencies]
dev = [
"pre-commit==4.3.0",
"ruff==0.12.7",
]
[tool.ruff]
line-length = 120
target-version = "py310"
exclude = ["__pycache__", ".venv", "build", "dist", "logs", "data", "robojudo/controller/motion_lib", "robojudo/policy/hilo", "robojudo/policy/gmt","packages", "third_party"]
lint.select = ["E", "F", "I", "B", "UP"]
lint.ignore = ["B008"]
lint.fixable = ["ALL"]