-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1.75 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dagpipe-core"
version = "0.2.3"
description = "LLM pipeline crash recovery for Python. Resumes from last successful node instead of restarting from scratch. No database required, just plain JSON files."
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
authors = [{ name = "Herbert" }]
keywords = ["llm", "ai", "genai", "pipeline", "dag", "orchestrator", "orchestration", "free-tier", "zero-cost", "checkpointing", "crash-recovery", "resilience", "structured-output", "constrained-generation", "pydantic", "json-schema", "function-calling", "tool-use", "agents", "ai-agents", "agentic-workflows", "workflow-engine", "langchain-alternative", "openai-alternative", "groq", "gemini", "task-dependency", "graph-orchestration", "retry-logic", "llm-pipeline"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"pydantic>=2.0",
"pyyaml",
"groq>=0.4.0",
"fastmcp>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.23",
]
[project.urls]
Homepage = "https://github.com/devilsfave/dagpipe"
Documentation = "https://github.com/devilsfave/dagpipe#readme"
Repository = "https://github.com/devilsfave/dagpipe"
Issues = "https://github.com/devilsfave/dagpipe/issues"
Changelog = "https://github.com/devilsfave/dagpipe/releases"
[tool.mcp]
mcp-name = "io.github.devilsfave/dagpipe"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.setuptools.packages.find]
where = ["src"]