-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathpyproject.toml
39 lines (36 loc) · 971 Bytes
/
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
[build-system]
requires = [
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "android-env"
version = "1.2.2"
description = "AndroidEnv environment and library for training agents."
authors = [{name = "DeepMind"}]
license = {file = "LICENSE"}
readme = {text = "Read the README at https://github.com/deepmind/android_env for more information.", content-type = "text/plain"}
keywords = ["Android", "OS", "reinforcement-learning"]
requires-python = ">=3.10"
dependencies = [
"absl-py>=0.1.0",
"dm_env",
"grpcio",
"numpy>=1.21",
"portpicker>=1.2.0",
"protobuf>=2.6",
"pygame",
]
[project.optional-dependencies]
testing = [
"gym",
"pillow",
"pytype",
]
acme = ["dm-acme"]
gym = ["gym"]
[project.urls]
repository = "https://github.com/deepmind/android_env"
deepmind = "https://www.deepmind.com/publications/androidenv-the-android-learning-environment"
arxiv = "https://arxiv.org/abs/2105.13231"