forked from google-research/android_world
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
51 lines (45 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
# Pyproject used for the docker implementation of the Android World Environment
# only. The non-docker implementation uses a requirements.txt file.
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "android_world"
version = "0.1.0"
description = "Android World Environment Project"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"absl-py==2.1.0",
"android_env==1.2.3",
"dm_env==1.6",
"fuzzywuzzy==0.18.0",
"google-generativeai",
"grpcio-tools",
"immutabledict==2.0.0",
"IPython",
"jsonschema==4.17.3",
"matplotlib>=3.6.1",
"numpy>=1.26.3",
"opencv-python",
"pandas>=2.1.4",
"pydub",
"python-Levenshtein",
"pytest",
"requests",
"tenacity",
"termcolor",
"fastapi",
"uvicorn",
]
[project.optional-dependencies]
dev = [
"pytest",
]
[tool.setuptools]
packages = ["android_world"]
[tool.setuptools.package-dir]
android_world = "android_world"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py","*_test.py"]