|
[project] |
|
name = "browsergym-meta" |
|
description = "BrowserGym: a gym environment for web task automation in the Chromium browser" |
|
dynamic = ["version"] |
|
[tool.setuptools] |
|
packages = [] |
|
[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.*:', |
|
] |
|
markers = [ |
|
"slow: marks tests as slow (deselect with '-m \"not slow\"')", |
|
"serial: mark test to be run sequantially (deselect with '-m \"not serial\"')" |
|
] |
|
|