-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (37 loc) · 878 Bytes
/
pyproject.toml
File metadata and controls
40 lines (37 loc) · 878 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "agent_trajectory_analysis"
version = "0.1.0"
description = "Toolkit for analyzing agent trajectories in RL environments"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Ondrej Lukas", email = "ondrej.lukas@aic.fel.cvut.cz"}
]
dependencies = [
"numpy",
"matplotlib",
"pandas",
"scipy",
"scikit-learn",
"tensorflow",
"gymnasium",
"networkx",
"ruptures",
"wandb",
"jsonlines>=4.0.0",
"netsecgame", # Assuming this is available in the user's index or enviroment
"pillow", # For PIL import
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["*"]
exclude = ["tests", "experiments"]