-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (81 loc) · 2.64 KB
/
pyproject.toml
File metadata and controls
93 lines (81 loc) · 2.64 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
86
87
88
89
90
91
92
93
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "basic-agent-chat-loop"
version = "1.10.0"
description = "Feature-rich interactive CLI for AWS Strands agents with token tracking, prompt templates, aliases, and configuration"
readme = "README.md"
requires-python = ">=3.10"
license-files = ["LICENSE"]
authors = [
{name = "Wes", email = "unseriousai@gmail.com"}
]
maintainers = [
{name = "Wes", email = "unseriousai@gmail.com"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Communications :: Chat",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Typing :: Typed",
]
keywords = ["agent", "chat", "loop", "cli"]
dependencies = [
"pyyaml>=6.0.3",
"rich>=14.3.3",
"pyreadline3>=3.5.4; platform_system=='Windows'", # Command history on Windows
"pyperclip>=1.11.0", # Clipboard support for copy command
"openai-harmony>=0.0.8", # OpenAI Harmony format support for gpt-oss models
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"pytest-asyncio>=0.24",
"black>=26.1.0",
"ruff>=0.15.4",
"mypy>=1.19.1",
]
windows = [
# pyreadline3 is now installed automatically on Windows (kept for compatibility)
]
bedrock = [
"anthropic-bedrock>=0.8.0", # AWS Bedrock integration
]
[project.urls]
Homepage = "https://github.com/Open-Agent-Tools/Basic-Agent-Chat-Loop"
Repository = "https://github.com/Open-Agent-Tools/Basic-Agent-Chat-Loop"
"Bug Tracker" = "https://github.com/Open-Agent-Tools/Basic-Agent-Chat-Loop/issues"
[project.scripts]
chat_loop = "basic_agent_chat_loop.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
basic_agent_chat_loop = ["py.typed", "notification.wav"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
asyncio_mode = "auto"
[tool.black]
line-length = 88
target-version = ['py39']
[tool.ruff]
line-length = 88
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["N815"] # Allow mixedCase in test mocks matching AWS SDK