-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (66 loc) · 1.94 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (66 loc) · 1.94 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
[project]
name = "synth-optimizers"
version = "0.2.22"
description = "Public Synth optimizer tooling with a Rust GEPA core."
authors = [{name = "Synth Laboratories", email = "josh@usesynth.ai"}]
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
dependencies = [
"pydantic>=2.0.0",
"synth-containers==0.4.3",
"websocket-client>=1.8.0",
]
[project.optional-dependencies]
eval-target-build = ["pyarrow>=17", "huggingface-hub>=0.24"]
daytona = ["daytona==0.210.0"]
benchmark-server = ["fastapi>=0.115", "uvicorn>=0.30", "httpx>=0.27"]
banking77 = [
"datasets>=2.19.0",
"openai>=1.0.0",
]
tinker = [
"tinker",
"renderers>=0.1.9",
]
dev = [
"maturin>=1.7.0",
"numpy>=2.0",
"pytest>=8.0.0",
"ruff>=0.6.0",
"ty>=0.0.32",
]
[dependency-groups]
dev = [
"maturin>=1.7.0",
"numpy>=2.0",
"pytest>=8.0.0",
"ruff>=0.6.0",
"ty>=0.0.32",
]
[project.scripts]
synth-optimizers = "synth_optimizers.cli:main"
synth-optimizers-cispo = "synth_optimizers.cispo_cli:main"
[project.urls]
Homepage = "https://github.com/synth-laboratories/optimizers"
Repository = "https://github.com/synth-laboratories/optimizers"
Issues = "https://github.com/synth-laboratories/optimizers/issues"
[build-system]
requires = ["maturin>=1.7.0"]
build-backend = "maturin"
[tool.maturin]
manifest-path = "rust/crates/synth_optimizers_py/Cargo.toml"
module-name = "synth_optimizers._synth_optimizers"
python-source = "src"
# Ship the bundled console docs (markdown + logo) as package data so a
# pip-installed `gepa console` can serve them without a repo checkout.
include = ["src/synth_optimizers/docs/**/*", "src/synth_optimizers/eval/catalog/*.toml"]
[tool.uv]
package = true
[tool.uv.sources]
# Coordinated-release candidate; no sibling checkout is required by uv users.
synth-containers = { path = "vendor/synth-containers/synth_containers-0.4.3-py3-none-any.whl" }
[tool.ruff]
line-length = 100
target-version = "py311"
src = ["src"]