-
Notifications
You must be signed in to change notification settings - Fork 77
/
pyproject.toml
37 lines (36 loc) · 982 Bytes
/
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
[project]
name = "python-motion-planning"
version = "0.28.0"
description = "Motion planning algorithms for Python"
maintainers = [
{name = "Yang Haodong", email = "[email protected]"},
{name = "Wu Maojia", email = "[email protected]"}
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.6"
dependencies = [
"numpy",
"scipy",
"matplotlib",
"cvxopt",
"osqp",
"tqdm",
"torch",
"torchvision",
"tensorboard==2.12.0",
"mkdocs",
"mkdocstrings",
"mkdocs-material"
]
repository = {type = "git", url = "https://github.com/ai-winter/python_motion_planning.git"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3.0",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"