-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (33 loc) · 1.03 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
[tool.poetry]
name = "robo-transformers"
version = "0.2.0"
description = "RT-1, RT-1-X, Octo Robotics Transformer Model Inference"
authors = ["Sebastian Peralta <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "robo_transformers" },
{ include = "robo_transformers/**/*.py" },
]
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
# tensorflow-macos = { version = "^2.15.0", markers = "sys_platform == 'darwin'" }
# tensorflow-metal= { version = "^1.1.0", markers = "sys_platform == 'darwin'" }
tensorflow = "^2.15.0"
gdown = "^4.7.1"
pillow = "^10.1.0"
tensorflow-hub = "^0.15.0"
tf-agents = "^0.19.0"
importlib-resources = "^6.1.1"
protobuf = ">=3.19.6,<4.24"
octo = {git = "https://github.com/sebbyjp/octo.git", rev = "073c383520c813d08466c9e8fdf35bac6394fcc0"}
beartype = "^0.16.4"
pyyaml = "^6.0.1"
lark = "^1.1.9"
jinja2 = "^3.1.3"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
pytest-cov = "^4.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"