-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.2 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
[project]
name = "optimize-anything"
version = "0.3.5"
description = "Optimize any text artifact using gepa — prompts, code, configs, skills"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
keywords = ["optimization", "gepa", "evaluator", "llm", "prompt-engineering"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = ["gepa", "httpx", "litellm", "cloudpickle"]
[project.urls]
Homepage = "https://github.com/ASRagab/optimize-anything"
Repository = "https://github.com/ASRagab/optimize-anything"
[project.scripts]
optimize-anything = "optimize_anything.cli:main"
[dependency-groups]
dev = [
"mypy>=1.19.1",
"pytest",
"pytest-cov>=7.0.0",
"radon>=6.0.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/optimize_anything"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"integration: live integration tests that call real APIs (deselect with '-m \"not integration\"')",
]
addopts = "-x --tb=short -q"
filterwarnings = [
"ignore::DeprecationWarning:litellm.*",
]