-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (34 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
36 lines (34 loc) · 1.16 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "strands-code-agent"
version = "0.1.0"
description = "A coding agent built on Strands Agents SDK that uses code generation as the primary action interface"
readme = "README.md"
license = "MIT-0"
requires-python = ">=3.10"
authors = [
{ name = "Emilio Monti" },
]
keywords = ["agents", "code-generation", "llm", "strands", "repl"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"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",
]
dependencies = [
"strands-agents>=0.1.0",
"smolagents>=1.0.0",
"jinja2>=3.0",
]
[project.urls]
Homepage = "https://github.com/aws-samples/sample-strands-code-agent"
Repository = "https://github.com/aws-samples/sample-strands-code-agent"
Issues = "https://github.com/aws-samples/sample-strands-code-agent/issues"