2 Star 0 Fork 0

mirrors_stanfordnlp/miniwob-plusplus

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pyproject.toml 2.79 KB
一键复制 编辑 原始数据 按行查看 历史
Ice Pasupat 提交于 2024-02-28 10:50 . Bumped the version number
# Package ######################################################################
[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "miniwob"
description = "A web interaction benchmark for reinforcement learning."
readme = "README.md"
requires-python = ">= 3.8"
authors = [{ name = "Farama Foundation", email = "contact@farama.org" }]
license = { text = "MIT License" }
keywords = ["Reinforcement Learning", "game", "RL", "AI", "gymnasium"]
classifiers = [
"Development Status :: 4 - Beta", # change to `5 - Production/Stable` when ready
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"Gymnasium>=1.0.0a1",
"Pillow>=9.0.0",
"selenium>=4.5.0",
"numpy>=1.18.0",
"farama-notifications>=0.0.1",
]
dynamic = ["version"]
[project.optional-dependencies]
testing = [
"pytest>=7.0.0",
"pytest-timeout>=2.1.0",
]
[project.urls]
Homepage = "https://farama.org"
Repository = "https://github.com/Farama-Foundation/miniwob-plusplus"
Documentation = "https://miniwob.farama.org"
"Bug Report" = "https://github.com/Farama-Foundation/miniwob-plusplus/issues"
[project.entry-points."gymnasium.envs"]
__root__ = "miniwob.registration:register_miniwob_envs"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["miniwob", "miniwob.*"]
[tool.setuptools.package-data]
miniwob = ["html/**"]
# Linters and Test tools #######################################################
[tool.black]
safe = true
[tool.isort]
atomic = true
profile = "black"
src_paths = ["miniwob", "tests", "docs/_scripts"]
extra_standard_library = ["typing_extensions"]
indent = 4
lines_after_imports = 2
multi_line_output = 3
[tool.pyright]
include = ["miniwob/**", "tests/**"]
strict = []
typeCheckingMode = "basic"
pythonVersion = "3.8"
pythonPlatform = "All"
typeshedPath = "typeshed"
enableTypeIgnoreComments = true
# This is required as the CI pre-commit does not download the module
# Therefore, we have to ignore missing imports
reportMissingImports = "none"
# Some modules are missing type stubs, which is an issue when running pyright locally
reportMissingTypeStubs = false
[tool.pytest.ini_options]
filterwarnings = [
# Turn warnings into errors
"error",
# ... except for the following warnings:
'ignore:.*For Box action spaces, we recommend using a symmetric and normalized space.*',
'ignore:.*No render fps was declared in the environment.*',
'ignore::ResourceWarning',
]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_stanfordnlp/miniwob-plusplus.git
git@gitee.com:mirrors_stanfordnlp/miniwob-plusplus.git
mirrors_stanfordnlp
miniwob-plusplus
miniwob-plusplus
master

搜索帮助