-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
executable file
·47 lines (44 loc) · 1.16 KB
/
pyproject.toml
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
[project]
name = "cbfkit"
version = "0.1.1"
description = "A Control Barrier Function Toolbox for Robotics Applications"
authors = [
{name = "Mitchell Black", email = "[email protected]"},
{name = "Bardh Hoxha", email = "[email protected]"},
{name = "Hardik Parwana", email = "[email protected]"},
{name = "Georgios Fainekos", email = "[email protected]"},
{name = "Hideki Okamoto", email = "[email protected]"}
]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10,<3.11"
dependencies = [
"jax>=0.4.23,<0.5",
"jaxlib>=0.4.23,<0.5",
"kvxopt>=1.3.2.0,<2.0",
"cmake>=3.28.1,<4.0",
"cython>=3.0.8,<4.0",
"pyyaml>=6.0.1,<7.0",
"setuptools>=69.0.3,<70.0",
"black>=23.12.1,<24.0",
"mypy>=1.8.0,<2.0",
"jaxopt>=0.8.3,<0.9",
"jupyter>=1.0.0,<2.0",
"control>=0.9.4,<1.0",
"matplotlib>=3.8.2,<4.0",
"pandas>=2.1.4,<3.0",
"cvxpy>=1.4.1,<2.0",
"cvxpylayers>=0.1.6,<0.2",
"casadi>=3.6.4,<4.0",
"tqdm>=4.66.2,<5.0"
]
[tool.black]
line-length = 100
extend-exclude = '''
'''
[tool.isort]
profile = "black"
line_length = 100
skip_gitignore = true
[tool.uv.pip]
system = true