-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (75 loc) · 2.36 KB
/
pyproject.toml
File metadata and controls
83 lines (75 loc) · 2.36 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 = ["setuptools>=45", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "devduck"
dynamic = ["version"]
description = "🦆 Self-adapting agent - one file."
readme = "README.md"
license = {text = "Apache-2.0"}
authors = [
{name = "Cagatay Cali", email = "cagataycali@icloud.com"}
]
keywords = ["ai", "agent", "minimalist", "self-healing", "ollama", "strands-agents"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
requires-python = ">=3.10,<3.14"
dependencies = [
"strands-agents",
"prompt_toolkit",
"strands-agents[ollama]",
"strands-agents[anthropic]",
"strands-agents[openai]",
"strands-agents[otel]",
"strands-agents-tools",
"beautifulsoup4",
"colorama",
"websockets",
"strands-mcp-server",
"strands-google",
"bedrock-agentcore-starter-toolkit",
"bedrock-agentcore",
"rumps; sys_platform == 'darwin'",
"strands-mlx; sys_platform == 'darwin'",
"eclipse-zenoh",
"halo",
"textual>=0.80",
"strands-inspect",
"numpy",
"spotipy",
"qrcode"
]
[project.optional-dependencies]
rl = ["stable-baselines3[extra]", "gymnasium"]
audio = ["webrtc-noise-gain", "openai-whisper", "webrtcvad", "sounddevice", "strands-agents[bidi-all]"]
[project.scripts]
devduck = "devduck:cli"
dev = "devduck:cli"
[project.urls]
Homepage = "https://github.com/cagataycali/devduck"
Repository = "https://github.com/cagataycali/devduck.git"
Documentation = "https://github.com/cagataycali/devduck#readme"
"Bug Tracker" = "https://github.com/cagataycali/devduck/issues"
[tool.setuptools]
packages = ["devduck", "devduck.tools"]
[tool.setuptools.package-data]
devduck = [
"agentcore_handler.py",
"requirements.txt",
]
[tool.setuptools_scm]
write_to = "devduck/_version.py"