-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (70 loc) · 1.79 KB
/
pyproject.toml
File metadata and controls
75 lines (70 loc) · 1.79 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
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "biped-walking-controller"
version = "0.1.0"
description = "LIPM preview control, footstep and IK/QP building blocks for biped walking demos."
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "Romain Desarzens" }]
license-files = ["LICENSE"]
keywords = ["biped", "LIPM", "ZMP", "walking", "pinocchio", "QP", "robotics"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
"matplotlib>=3.7",
"shapely>=2.0",
"meshcat>=0.3",
"qpsolvers>=4.0",
"osqp>=0.6",
# Pinocchio: pip package name is `pin`. Prefer conda-forge/apt if pip wheels are unavailable.
"pin>=2.7",
"pybullet>=3.2",
]
[project.optional-dependencies]
dev = [
"black>=24.3",
"mypy>=1.10",
"pylint>=3.3",
"pytest>=8.2",
"pytest-cov>=5.0",
"types-setuptools",
"types-requests",
]
docs = [
"mkdocs>=1.6",
"mkdocs-material>=9.5",
"mkdocstrings>=0.25",
"mkdocstrings-python>=1.10",
]
[project.urls]
Homepage = "https://github.com/rdesarz/biped-walking-controller"
Issues = "https://github.com/rdesarz/biped-walking-controller/issues"
[tool.black]
line-length = 100
target-version = ["py310"]
preview = true
[tool.mypy]
python_version = "3.10"
strict = true
warn_unused_ignores = true
warn_redundant_casts = true
disallow_any_generics = true
plugins = []
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = [
"--maxfail=1",
"--disable-warnings",
"--cov=biped_walking_controller",
"--cov-report=term-missing:skip-covered",
"--cov-report=xml",
]