-
Notifications
You must be signed in to change notification settings - Fork 140
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 881 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 881 Bytes
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
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-motion-planning"
version = "2.0.dev2"
description = "Motion planning algorithms for Python"
maintainers = [
{name = "Wu Maojia", email = "omige@mail.nwpu.edu.cn"},
{name = "Yang Haodong", email = "913982779@qq.com"}
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.6"
dependencies = [
"numpy",
"scipy",
"matplotlib",
"osqp",
"gymnasium",
"faiss-cpu",
"pyvista",
"pyvistaqt"
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
[project.urls]
Repository = "https://github.com/ai-winter/python_motion_planning"
[tool.setuptools.packages.find]
where = ["src"]