-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.24 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
48
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "cbfpy"
version = "0.0.1"
description = "Control Barrier Functions in Python"
authors = [{ name = "Daniel Morton", email = "[email protected]" }]
readme = "README.md"
keywords = ["control", "barrier", "function", "CBF", "Jax"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy<2", # Pybullet has trouble with numpy 2.0
"jax",
"jaxlib",
"qpax",
]
[project.urls]
Documentation = "https://danielpmorton.github.io/cbfpy/"
Repository = "https://github.com/danielpmorton/cbfpy/"
[project.optional-dependencies]
examples = [
"pybullet",
"pygame",
# "gym_pybullet_drones @ git+https://github.com/danielpmorton/gym-pybullet-drones.git",
"wheel",
"matplotlib",
]
dev = ["mkdocs-material", "mkdocstrings[python]", "pylint", "black"]
all = [
"pylint",
"black",
"pybullet",
"pygame",
# "gym_pybullet_drones @ git+https://github.com/danielpmorton/gym-pybullet-drones.git",
"mkdocs-material",
"mkdocstrings[python]",
]
[tool.setuptools.packages.find]
exclude = ["artifacts", "images"]