forked from azhang6-nlp/NewsPulse_AI_Agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 995 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (32 loc) · 995 Bytes
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
[project]
name = "newsletter"
version = "0.0.1"
description = "AI Newsletter Generation Pipeline" # Added descriptive text
authors = [
{name = "Your Name",email = "you@example.com"}
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
# Core Libraries
"chromadb (==0.5.3)",
"fastapi (==0.121.2)",
"google-adk (>=1.12.1)",
"google-auth (==2.43.0)",
"google-genai (==1.50.1)",
# Standard Python/Web Dependencies
"uvicorn (==0.38.0)",
"jinja2 (==3.1.0)",
"sqlalchemy (==2.0.44)",
"google-cloud-aiplatform (==1.127.0)",
"beautifulsoup4==4.12.3"
]
# --- NEW SECTION: Build Requirements for Compiling Dependencies ---
[build-system]
# Added numpy and cython here as well, to satisfy both uv and general setuptools builds.
requires = ["setuptools>=64", "wheel", "numpy", "cython"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["AI_Newsletter*"]
exclude = ["session*", "tests*"]