-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
70 lines (62 loc) · 1.63 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
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[project]
name = "browsergym-workarena"
description = "WorkArena benchmark for BrowserGym"
authors = [
{name = "Léo Boisvert"},
{name = "Alex Drouin"},
{name = "Maxime Gasse"},
{name = "Alex Lacoste"},
{name = "Manuel Del Verme"},
{name = "Megh Thakkar"},
]
readme = "README.md"
requires-python = ">3.7"
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Apache Software License",
]
dynamic = ["dependencies", "version"]
[project.urls]
homepage = "https://github.com/ServiceNow/WorkArena"
[project.scripts]
workarena-install = "browsergym.workarena.install:main"
workarena-human-eval = "browsergym.workarena.human_eval.tool:main"
[tool.hatch.version]
path = "src/browsergym/workarena/__init__.py"
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[tool.hatch.build.targets.wheel]
packages = ["src/browsergym"]
[tool.black]
line-length = 100
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.nox
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.pytest.ini_options]
filterwarnings = [
'ignore::UserWarning:gymnasium.*:', # too many "The obs is not within the observation space." warnings.
]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]