-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.46 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
[project]
name = "agent-farm"
version = "0.2.0"
description = "DuckDB multi-org agent swarm with Spec Engine, 280+ SQL macros, meta-learning, MCP Apps, and smart extensions"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Björn Bethge", email = "bjoern.bethge@gmail.com" }
]
requires-python = ">=3.11"
keywords = ["duckdb", "mcp", "llm", "ollama", "sql", "agent", "anthropic", "security"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"duckdb>=1.1.0",
"mcp>=1.2.0",
"numpy>=1.26.0",
"rich>=13.0",
"typer>=0.24.1",
]
[project.scripts]
agent-farm = "agent_farm.cli:cli"
agent-farm-mcp = "agent_farm.main:main"
[project.urls]
Homepage = "https://github.com/agentic-dev-io/agent-farm"
Repository = "https://github.com/agentic-dev-io/agent-farm"
[project.optional-dependencies]
anthropic = ["anthropic>=0.40.0"]
[build-system]
requires = ["uv_build>=0.8.22,<0.9.0"]
build-backend = "uv_build"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-cov>=4.0",
"ruff>=0.4",
"radon>=6.0.1",
]