-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
53 lines (49 loc) · 1.07 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mpail2"
version = "0.1.0"
description = "Model Predictive Adversarial Imitation Learning 2"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10,<3.11"
authors = [
{ name = "Tyler Han, Siyang Shen, Rohan Baijal, Harine Ravichandiran, Bat Nemekhbold, Kevin Huang, Sanghun Jung, Byron Boots" }
]
maintainers = [
{ name = "Tyler Han", email = "than123@uw.edu" }
]
keywords = []
classifiers = [
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"psutil",
"torch",
"numpy>=1.20",
"pyyaml",
"toml",
"gymnasium[mujoco]>=1.0",
"tqdm",
"wandb",
"imageio",
"imageio-ffmpeg",
"av",
"matplotlib",
"scipy",
"hydra-core",
]
[project.optional-dependencies]
franka = [
"opencv-python",
"pyzmq",
"franky-control",
"pyrealsense2",
]
[tool.setuptools.packages.find]
include = ["mpail2*"]
[project.scripts]
mpail2-train = "mpail2.train.train:main"
mpail2-train-isaac = "mpail2.train.train:main"