-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (75 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
87 lines (75 loc) · 1.65 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 = "freeact"
dynamic = ["version"]
description = "Freeact code action agent"
authors = [
{ name = "Martin Krasser", email = "martin@gradion.ai" },
]
requires-python = ">=3.13,<3.15"
readme = "README.md"
license = "Apache-2.0"
dependencies = [
"aiostream>=0.7.1",
"google-genai>=1.56.0",
"pydantic-ai>=1.59.0",
"python-dotenv>=1.0.0",
"pillow>=12.0.0",
"pyyaml>=6.0.3",
"rich>=14.2.0",
"textual>=8.0.0",
"ipybox>=0.8.2",
"mcpygen>=0.1.3",
"sqlite-vec>=0.1.0",
"watchfiles>=1.0.0",
"trafilatura>=2.0.0",
]
[project.scripts]
freeact = "freeact.cli:main"
[tool.uv]
default-groups = [
"docs",
"dev",
]
[dependency-groups]
docs = [
"griffe-pydantic>=1.1.8",
"mkdocs>=1.6.1,<2",
"mkdocs-material>=9.5.48,<10",
"mkdocstrings-python>=1.12.2,<2",
"mkdocs-llmstxt>=0.4.0",
"click<=8.2.1",
]
dev = [
"invoke>=2.2,<3",
"pre-commit>=4.3.0,<5",
"pytest>=8.4.2,<9",
"pytest-asyncio>=1.2.0,<2",
"pytest-cov>=4.1.0,<5",
"pytest-xdist>=3.8.0",
"types-pyyaml>=6.0.12.20250915",
]
[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "uv-dynamic-versioning"
[tool.uv-dynamic-versioning]
vcs = "git"
pattern = "default-unprefixed"
style = "pep440"
[tool.hatch.build.targets.sdist]
include = ["freeact"]
[tool.hatch.build.targets.wheel]
include = ["freeact"]
[tool.ruff]
line-length = 120
[tool.ruff.lint.per-file-ignores]
"**/__init__.py" = ["F401"]
[tool.mypy]
check_untyped_defs = true
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = [
"yaml.*"
]
ignore_missing_imports = true