-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
54 lines (47 loc) · 1.27 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "rllte-hub"
version = "0.0.1.beta02"
authors = [
{ name="Reinforcement Learning Evolution Foundation", email="rlefoundation@gmail.com" },
]
description = "Model Hub of the Long-Term Evolution Project of Reinforcement Learning"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["Reinforcement Learning", "Algorithm", "Evolution", "Baseline", "Hub", "Datasets", "Models"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"huggingface_hub",
"rllte-core",
"numpy",
"pandas"
]
[project.urls]
"Code" = "https://github.com/RLE-Foundation/rllte-hub"
"Documentation" = "https://docs.rllte.dev/"
"Benchmark" = "https://hub.rllte.dev/"
"Bug Tracker" = "https://github.com/RLE-Foundation/rllte-hub/issues"
[tool.ruff]
# Same as Black.
line-length = 127
# Assume Python 3.9
target-version = "py39"
# See https://beta.ruff.rs/docs/rules/
select = ["E", "F", "B", "UP", "C90", "RUF"]
# Ignore explicit stacklevel`
ignore = ["B028"]
[tool.black]
line-length = 127
[tool.isort]
profile = "black"
line_length = 127
src_paths = ["hub"]
[tool.pytype]
inputs = ["hub"]
disable = ["pyi-error"]