You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
605 B
TOML

[project]
name = "personal-gmail-calendar-agent"
version = "0.1.0"
description = "Personal agent for Gmail triage and calendar availability"
requires-python = ">=3.11"
dependencies = [
"apscheduler",
"fastapi",
"google-api-python-client",
"google-auth",
"google-auth-oauthlib",
"python-dotenv",
"strands-agents[openai]",
"uvicorn[standard]",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["app"]
[tool.hatch.build.targets.sdist]
include = [
"app/**",
"README.md",
"pyproject.toml",
]