-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (49 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
52 lines (49 loc) · 1.09 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
[build-system]
requires = ["setuptools>=75.8.0", "wheel>=0.46.3"]
build-backend = "setuptools.build_meta"
[project]
name = "trajectory-analysis"
version = "0.1.0"
description = "Trajectory analysis tools for SWE-agent and OpenHands"
requires-python = ">=3.12"
dependencies = [
"bashlex>=0.18",
"datasets>=4.6.0",
"matplotlib>=3.10.3",
"networkx>=3.5",
"numpy>=2.3.0",
"pandas>=2.3.0",
"pygraphviz>=1.14",
"pyyaml>=6.0.2",
"scipy>=1.16.3",
"seaborn>=0.13.2",
"requests>=2.32.3",
"tqdm>=4.67.1",
"sympy>=1.14.0",
]
[tool.setuptools]
packages = ["graph_construction", "graph_analysis", "lang_construction"]
[project.optional-dependencies]
ml = [
"torch>=2.7.1",
"transformers>=4.52.4",
"tokenizers>=0.21.1",
"safetensors>=0.5.3",
"jax>=0.8.0",
"jaxlib>=0.8.0",
"huggingface-hub>=0.32.4",
]
notebook = [
"jupyter>=1.1.1",
"jupyterlab>=4.4.3",
"ipywidgets>=8.1.7",
"nbconvert>=7.16.6",
"ipykernel>=6.29.5",
]
dev = [
"pytest>=7.0",
"black>=22.0",
"flake8>=4.0",
"mypy>=0.950",
"pyinstaller>=6.11.1",
]