-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (62 loc) · 1.8 KB
/
pyproject.toml
File metadata and controls
72 lines (62 loc) · 1.8 KB
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
71
72
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pogema-toolbox"
description = "Evaluation toolbox for Pogema environment"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10,<3.15"
authors = [
{ name = "Alexey Skrynnik" },
]
dynamic = ["version"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research",
]
dependencies = [
"loguru",
"matplotlib",
"seaborn>=0.13",
"tabulate>=0.8.7",
"dask[distributed]",
"numpy>=2.0",
"gymnasium>=1.2.3",
"pydantic>=2.12.5",
"pandas",
"PyYAML",
"requests",
"pogema @ git+https://github.com/Cognitive-AI-Systems/pogema.git",
"typer>=0.9",
"rich>=13.0",
"questionary>=2.0",
]
[project.scripts]
ptb = "pogema_toolbox.cli.app:cli_main"
pogema-toolbox = "pogema_toolbox.cli.app:cli_main"
[project.optional-dependencies]
test = ["pytest>=7.0"]
dev = ["pytest>=7.0", "ruff"]
[project.urls]
Homepage = "https://github.com/Cognitive-AI-Systems/pogema-toolbox"
Repository = "https://github.com/Cognitive-AI-Systems/pogema-toolbox"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
path = "pogema_toolbox/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["pogema_toolbox"]
[tool.hatch.build.targets.sdist]
include = ["pogema_toolbox"]
[tool.setuptools.packages.find]
include = ["pogema_toolbox*"]
[tool.pytest.ini_options]
testpaths = ["tests"]