-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.49 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (50 loc) · 1.49 KB
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
49
50
51
52
53
54
55
56
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mpot"
version = "0.1.0"
description = "Motion Planning via Optimal Transport in PyTorch"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
authors = [
{name = "An T. Le", email = "an@robot-learning.de"},
]
keywords = ["motion-planning", "optimal-transport", "sinkhorn", "trajectory-optimization", "robotics"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"torch>=2.0",
"numpy>=1.24",
"scipy>=1.10",
"matplotlib>=3.7",
"einops>=0.8.0",
"torch_robotics @ git+https://github.com/anindex/torch_robotics.git@6db69138af9d40aab5d4b1beafc0314ec0ac0093",
]
[project.urls]
Homepage = "https://github.com/anindex/mpot"
Paper = "https://arxiv.org/abs/2309.15970"
Issues = "https://github.com/anindex/mpot/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"ruff>=0.1.0",
]
[tool.setuptools.packages.find]
include = ["mpot*"]
[tool.ruff]
line-length = 120
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = ["E501"]