forked from lunarlab-gatech/Morphology-Informed-HGNN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (42 loc) · 1.21 KB
/
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
38
39
40
41
42
43
44
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mi_hgnn"
version = "0.1.0"
dependencies = [
"numpy==1.26.4",
"matplotlib==3.8.3",
"networkx==3.2.1",
"urchin==0.0.27",
"torch==2.2.1",
"torchvision==0.17.1",
"torchmetrics==1.3.2",
"torch_geometric==2.5.0",
"pandas==2.2.1",
"pin==2.7.0",
"rosbags==0.9.22",
"lightning==2.2.1",
"wandb==0.16.6",
"scipy==1.12.0",
"names==0.3.0",
"scikit-learn==1.4.1.post1",
"gdown==5.2.0"
]
authors = [
]
description = "A Morphological-Informed Heterogeneous graph neural network implementation that learns to estimate contact state on a robotic quadruped."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
]
[project.urls]
Homepage = "https://github.com/lunarlab-gatech/state-estimation-gnn"
Issues = "https://github.com/lunarlab-gatech/state-estimation-gnn/issues"