forked from pculbertson/argus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (51 loc) · 1.13 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
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "argus"
version = "0.0.1"
description = "Cube pose estimation tool for the in-hand manipulation setup in the AMBER Lab."
readme = "README.md"
license = {text="Apache 2.0"}
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
]
# the dependencies with old lower bounds are due to mlagents
dependencies = [
"h5py>=3.11.0",
"kornia>=0.7.2",
"matplotlib>=3.5.2",
"mujoco>=3.1.5",
"numpy>=1.21.2",
"pypose>=0.6.7",
"scipy>=1.10.1",
"torch>=2.0.0",
"torchvision>=0.15.2",
"tqdm>=4.66.4",
"tyro>=0.8.4",
"wandb>=0.17.0",
"imageio>=2.33.1",
]
[project.optional-dependencies]
# development-only dependencies
unity = [
"mlagents==1.0.0",
]
dev = [
"unity",
"black>=23.3.0",
"flake8>=6.0.0",
"isort>=5.12.0",
"pre-commit>=3.3.2",
"pytest>=7.0.0",
]
[options]
dependency_links = [
"https://download.pytorch.org/whl/cu121",
]
[tool.black]
line-length = 120
[tool.setuptools.packages.find]
include = ["argus"]