-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathpyproject.toml
35 lines (32 loc) · 858 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
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-motion-planning"
version = "1.1"
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",
"tensorboard==2.12.0"
]
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"]