-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.48 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
[project]
name = "agentcore-memory-browser"
version = "0.1.0"
description = "A web interface for browsing and exploring Amazon Bedrock AgentCore Memory resources"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"boto3>=1.40.33",
"fastapi>=0.116.2",
"jinja2>=3.1.6",
"python-multipart>=0.0.20",
"uvicorn>=0.35.0",
]
authors = [
{name = "Danilo Poccia", email = "danilo@amazon.com"}
]
license = "MIT"
keywords = ["aws", "bedrock", "agentcore", "memory", "fastapi", "browser"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
]
[project.scripts]
agentcore-memory-browser = "main:main"
[project.urls]
Homepage = "https://github.com/danilop/agentcore-memory-browser"
Repository = "https://github.com/danilop/agentcore-memory-browser"
Issues = "https://github.com/danilop/agentcore-memory-browser/issues"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["agentcore_memory_browser"]
py-modules = ["main"]
[tool.setuptools.package-data]
agentcore_memory_browser = ["static/**/*", "templates/**/*"]
[dependency-groups]
dev = [
"ruff>=0.13.0",
"vulture>=2.14",
]
[tool.vulture]
paths = [".", ".vulture_whitelist"]
exclude = [".venv/", "build/"]