-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (42 loc) · 1.31 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["pgeon"]
[project]
name = "pgeon-xai"
version = "1.0.1"
dependencies = [
"gymnasium",
"networkx>=3.1",
"numpy>=1.24.4",
"tqdm>=4.66.1",
"jupyter",
"ray[rllib]>=2.8.1",
"torch",
"gymnasium[classic-control]",
]
requires-python = ">=3.8"
authors = [
{name = "Adrian Tormos", email = "hpai@bsc.es"},
{name = "Victor Gimenez-Abalos", email = "hpai@bsc.es"},
{name = "Dmitry Gnatyshak", email = "hpai@bsc.es"},
{name = "Sergio Alvarez-Napagao", email = "hpai@bsc.es"},
]
maintainers = [
{name = "Adrian Tormos", email = "hpai@bsc.es"},
{name = "Sergio Alvarez-Napagao", email = "hpai@bsc.es"},
]
description = "pgeon (or pgeon-xai) is a Python package that produces explanations for opaque agents using Policy Graphs (PGs)"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["explainability", "reinforcement learning", "agents", "artificial intelligence", "policy graphs"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python"
]
[project.urls]
Homepage = "https://github.com/HPAI-BSC/pgeon"
Repository = "https://github.com/HPAI-BSC/pgeon"
"Bug Tracker" = "https://github.com/HPAI-BSC/pgeon/issues"