-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (78 loc) · 1.85 KB
/
Copy pathpyproject.toml
File metadata and controls
85 lines (78 loc) · 1.85 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "goldfive"
version = "0.1.0"
description = "Agent orchestration: stay on target."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
authors = [
{ name = "Sunil Pedapudi" },
]
keywords = ["agents", "orchestration", "planning", "llm", "drift", "steering", "adk", "anthropic"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
]
dependencies = []
[project.optional-dependencies]
adk = [
"google-adk>=0.1.0",
]
claude = [
"anthropic>=0.39.0",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.5",
"mypy>=1.10",
"protobuf>=4.25",
"grpcio-tools>=1.60",
"hypothesis>=6.0",
]
embedding = [
"sentence-transformers>=3.0",
]
examples = [
"rich>=13.0",
]
proto = [
"grpcio>=1.60",
"grpcio-tools>=1.60",
"mypy-protobuf>=3.5",
]
[project.urls]
Homepage = "https://github.com/pedapudi/goldfive"
Repository = "https://github.com/pedapudi/goldfive"
Issues = "https://github.com/pedapudi/goldfive/issues"
Changelog = "https://github.com/pedapudi/goldfive/blob/main/CHANGELOG.md"
[tool.hatch.build.targets.wheel]
include = [
"goldfive",
"goldfive/pb",
"goldfive/py.typed",
]
[tool.ruff]
line-length = 100
target-version = "py311"
extend-exclude = ["goldfive/pb"]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"UP", # pyupgrade
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]