-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (82 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
87 lines (82 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
76
77
78
79
80
81
82
83
84
85
86
87
[project]
name = "synthworld_experiments"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"boto3>=1.39.3",
"einops>=0.8.1",
"gritlm==1.0.2",
"hydra-core>=1.3.2",
"ipykernel>=6.29.5",
"langchain>=0.3.26",
"langchain-litellm>=0.2.1",
"langfun[all]>=0.0.1",
"langfuse>=3.0",
"litellm[caching]==1.76.3",
"loguru>=0.7.3",
"matplotlib>=3.10.6",
"networkx==3.4.2",
"openai>=1.91.0",
"orjson>=3.10.18",
"pandas>=2.3.0",
"plotly>=6.3.0",
"polars>=1.33.0",
"pytest>=7.0.0",
"python-igraph==0.11.8",
"rich>=14.0.0",
"seaborn>=0.13.2",
"statsmodels>=0.14.5",
"streamlit>=1.49.1",
"tenacity==8.5.0",
"tiktoken==0.7.0",
"torch==2.5.1",
"transformers==4.45.2",
"vllm==0.6.6.post1",
]
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"datasets>=4.0.0",
]
[tool.ruff]
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".ipynb_checkpoints",
".mypy_cache",
".nox",
".pants.d",
".pyenv",
".pytest_cache",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
".vscode",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"site-packages",
"venv",
]
[tool.ruff.format]
# Like Black, use double quotes for strings.
quote-style = "double"