-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
53 lines (45 loc) · 1.22 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
[tool.poetry]
name = "data-planning-agent"
version = "0.1.0"
description = "An MCP agent that transforms high-level business intents into structured Data Product Requirement Prompts through conversational refinement"
authors = ["Your Name <you@example.com>"]
readme = "README.md"
packages = [{include = "data_planning_agent", from = "src"}]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
google-generativeai = "^0.8.0"
google-cloud-storage = "^2.10.0"
google-cloud-discoveryengine = "^0.11.0"
mcp = "^1.0.0"
fastapi = "^0.115.0"
uvicorn = {extras = ["standard"], version = "^0.32.0"}
pydantic = "^2.0.0"
python-dotenv = "^1.0.0"
rich = "^13.0.0"
httpx = "^0.27.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
pytest-asyncio = "^0.21.2"
pytest-mock = "^3.11.0"
pytest-cov = "^4.1.0"
black = "^23.0.0"
ruff = "^0.1.0"
[tool.poetry.scripts]
planning-agent = "data_planning_agent.cli.interactive:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]
markers = [
"unit",
"integration",
]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.black]
line-length = 100
target-version = ["py310"]