-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 791 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 791 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "manageyourdata"
version = "0.1.0"
description = "Generate PDF reports and AI powered analysis from data files locally."
authors = [
{ name = "Marcos Hidalgo", email = "marcoshidalgobanos@gmail.com" }
]
dependencies = [
"pandas",
"matplotlib",
"fpdf",
"openpyxl",
"streamlit",
"streamlit[pdf]",
"fastapi[standard]",
"fastapi-mcp",
"langchain-ollama",
"langchain-experimental",
"langchain-google-genai",
"tabulate",
]
[project.scripts]
manageyourdata = "manageyourdata.main:main"
[tool.setuptools]
packages = ["manageyourdata"]
[tool.setuptools.package-data]
"manageyourdata" = ["data/*", "images/*", "exports/*", "reports/*"]