forked from google-gemini/computer-use-preview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (35 loc) · 1000 Bytes
/
pyproject.toml
File metadata and controls
43 lines (35 loc) · 1000 Bytes
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
[project]
name = "computer-use"
version = "0.1.0"
description = "Build from google-gemini/computer-use-preview"
authors = [
{name = "Jonathan Aldwinckle",email = "jon@triple-prime.com"}
]
license = "Apache-2.0"
license-files = [
"LICENSE"
]
readme = "README.md"
# Poetry assumes the package name is the same as the folder name (computer_use).
packages = [
{ include = "computer_use" }
]
requires-python = ">=3.12,<3.14"
dependencies = [
"pydantic (>=2.12.4,<3.0.0)",
"termcolor (>=3.2.0,<4.0.0)",
"rich (>=14.2.0,<15.0.0)",
"playwright (>=1.55.0,<2.0.0)",
"browserbase (>=1.4.0,<2.0.0)",
"google-auth (==2.41.1)",
"google-genai (>=1.49.0,<2.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.local.dependencies]
dynamics-scripts = {develop = true}
[dependency-groups]
local = [
"dynamics-scripts @ file:///workspaces/github/dynamics-reusable-actions/project/packages/ds"
]