-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.66 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (54 loc) · 1.66 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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentforge-harness"
version = "0.1.3"
description = "An open-source agentic coding harness for building and studying AI coding agents"
readme = "README.MD"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{name = "Mohit Goyal"},
]
keywords = ["ai", "coding-agent", "llm", "agent-harness", "agentforge"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Build Tools",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"anthropic",
"openai",
"pydantic>=2.0",
"rich",
"httpx",
"click",
"python-dotenv",
"platformdirs",
"tiktoken",
"tomli; python_version < '3.11'",
"ddgs",
"fastmcp",
]
[project.urls]
Homepage = "https://github.com/MohitGoyal09/Agentforge"
Repository = "https://github.com/MohitGoyal09/Agentforge"
Documentation = "https://github.com/MohitGoyal09/Agentforge#readme"
[project.scripts]
agentforge = "agentforge_harness.cli.run:cli"
[project.optional-dependencies]
dev = ["build>=1.2", "pytest>=8.0", "pytest-asyncio>=0.24", "twine>=6.0", "wheel>=0.43"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.setuptools.packages.find]
include = ["agentforge_harness*"]