-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (68 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
75 lines (68 loc) · 1.62 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
73
74
75
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/__about__.py"
[project]
name = "axs"
dynamic = ["version"]
description = "Generating agentic explanations for multi-agent systems with simulator grounding"
readme = "README.md"
authors = [{ name = "Balint Gyevnar", email = "balint.gyevnar@ed.ac.uk" }]
requires-python = ">=3.11"
dependencies = [
"anthropic>=0.49.0",
"gymnasium>=1.1.1",
"openai>=1.66.3",
"pettingzoo>=1.24.3",
"scipy>=1.15.2",
"setuptools>=76.1.0",
"typer>=0.15.2"
]
keywords = [
"Explainable Agent",
"Reinforcement Learning",
"Explainable AI",
"Agentic System",
"LLM",
"Simulator",
]
classifiers = [
"Development Status :: 1 - Planning",
"License :: OSI Approved :: MIT License",
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
license = "MIT"
[project.scripts]
axs = "axs:cli"
axs-igp2 = "envs.axs_igp2:cli"
[project.optional-dependencies]
igp2 = ["igp2", "gofi"]
vllm = [
"vllm>=0.7.3",
"huggingface-hub>=0.29.3"
]
[dependency-groups]
dev = ["hatch>=1.14.0"]
[tool.uv.sources]
gofi = { git = "https://github.com/gyevnarb/gofi" }
igp2 = { git = "https://github.com/uoe-agents/IGP2" }
[tool.ruff]
select = ["ALL"]
ignore = [
"S301",
"ANN401",
"ERA001",
"PLR0912",
"C901",
"ARG002",
"SLF001",
"FBT002",
"FBT001",
"PLR0915"
]