-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (62 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
67 lines (62 loc) · 1.53 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
57
58
59
60
61
62
63
64
65
66
67
[project]
name = "MultiRefLfD-TPGP"
version = "0.1.1"
description = "Learning Multi-Reference Frame Skills from Demonstration with Task-Parameterized Gaussian Processes (TPGP)"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Archana Kulkarni" }, { name = "Ashrith Sagar" }]
keywords = [
"robotics",
"imitation learning",
"learning from demonstration",
"task-parameterized gaussian processes",
]
requires-python = ">=3.11"
dependencies = [
"deprecated>=1.3.1",
"frechetdist>=0.6",
"gpytorch>=1.14",
"matplotlib>=3.10.9",
"numpy>=2.0.2",
"pyro-ppl>=1.9.1",
"scipy>=1.17.1",
"shapely>=2.0.7",
"torch>=2.6.0",
"tqdm>=4.67.3",
]
[build-system]
requires = ["hatchling>=1.29.0"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ipykernel>=7.2.0",
"jupyter>=1.1.1",
"jupyter-ruff>=0.3.1",
"jupyterlab>=4.5.7",
"ruff>=0.15.12",
]
[project.optional-dependencies]
manim = ["manim>=0.20.1"]
[tool.hatch.build.targets.wheel]
packages = ["lfd"]
[tool.bumpversion]
current_version = "0.1.1"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
regex = false
ignore_missing_version = false
ignore_missing_files = false
tag = false
sign_tags = false
tag_name = "v{new_version}"
tag_message = "v{new_version}"
allow_dirty = true
commit = false
message = "CHANGELOG"
moveable_tags = []
commit_args = ""
setup_hooks = []
pre_commit_hooks = []
post_commit_hooks = []