-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (72 loc) · 2.02 KB
/
pyproject.toml
File metadata and controls
83 lines (72 loc) · 2.02 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agent-forge"
version = "0.1.0"
description = "AI-powered test generation agent that analyzes PR diffs and generates targeted test cases"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.12"
authors = [
{name = "RkP", email = "pokhriyal.rohit2@gmail.com"},
]
keywords = ["ai", "testing", "agent", "test-generation", "langgraph", "code-analysis"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Testing",
]
dependencies = [
"langgraph>=0.2",
"langchain-openai>=0.3",
"typer>=0.15",
"rich>=13",
"pydantic-settings>=2",
"pyyaml>=6",
"pygithub>=2",
"tree-sitter>=0.24",
"tree-sitter-language-pack>=0.5",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"pytest-asyncio>=0.24",
"pytest-cov",
"vcrpy>=6",
"ruff>=0.7",
"mypy>=1.12",
"pre-commit>=3",
]
semgrep = ["semgrep>=1.90"]
[project.scripts]
agent-forge = "agent_forge.cli.app:main"
[project.urls]
Homepage = "https://github.com/rkp4u/agent-forge"
Repository = "https://github.com/rkp4u/agent-forge"
Issues = "https://github.com/rkp4u/agent-forge/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/agent_forge"]
[tool.pytest.ini_options]
markers = [
"unit: Unit tests (fast, no external dependencies)",
"integration: Integration tests (may need network, build tools)",
"e2e: End-to-end tests (slow, needs API keys and real repos)",
]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.coverage.run]
source = ["src/agent_forge"]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP", "B", "SIM", "RUF"]
[tool.mypy]
python_version = "3.12"
strict = true
warn_return_any = true
warn_unused_configs = true