-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.21 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
[build-system]
requires = ["setuptools>=77.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "harness-agent-kit"
dynamic = ["version", "dependencies"]
description = "Production-Ready AI Agent Development Framework"
authors = [{ name = "leemysw" }]
readme = { file = "README.md", content-type = "text/markdown" }
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.11"
keywords = [
"agent",
"claude-agent-sdk",
"fastapi",
"telegram",
"discord",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/leemysw/agent-kit"
Repository = "https://github.com/leemysw/agent-kit"
Issues = "https://github.com/leemysw/agent-kit/issues"
Changelog = "https://github.com/leemysw/agent-kit/blob/main/CHANGELOG.md"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["agent*"]
namespaces = true
[tool.setuptools.dynamic]
dependencies = { file = ["agent/requirements.txt"] }
version = { attr = "agent.__version__" }
[project.scripts]
agent-kit = "agent.cli:main"