-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (44 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
55 lines (44 loc) · 1.04 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
[build-system]
build-backend = "cmeel"
requires = [
"cmeel[build]",
"eiquadprog >= 1.2.6, < 2",
"pin[build]==3.8.0",
"rhoban-cmeel-jsoncpp",
"doxystub >= 0.1.7",
"cmake<4"
]
[project]
authors = [{ email = "team@rhoban.com", name = "Rhoban team" }]
classifiers = []
dependencies = [
"eiquadprog >= 1.2.6, < 2",
"pin==3.8.0",
"rhoban-cmeel-jsoncpp",
"meshcat",
"ischedule"
]
description = "PlaCo: Rhoban Planning and Control"
license = "MIT"
name = "placo"
requires-python = ">= 3.9"
version = "0.9.20"
[project.urls]
changelog = "https://github.com/rhoban/placo/blob/main/CHANGELOG.md"
homepage = "https://placo.readthedocs.io/en/latest/"
repository = "https://github.com/rhoban/placo.git"
[tool.isort]
profile = "black"
[tool.ruff]
target-version = "py39"
[tool.tomlsort]
all = true
[tool.cmeel]
run-tests = false
[tool.cibuildwheel.macos]
before-all = "brew install --formula doxygen"
[tool.cibuildwheel.linux]
before-all = "yum install -y doxygen"
[[tool.cibuildwheel.overrides]]
select = "*-musllinux*"
before-all = "apk add doxygen"