Spaces:
Sleeping
Sleeping
Upload pyproject.toml with huggingface_hub
Browse files- pyproject.toml +24 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "ai-stock-analysis-chatbot"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "A conversational AI system for stock analysis using a Multimodal Multi-Agent Council."
|
| 5 |
+
readme = "README.md"
|
| 6 |
+
requires-python = ">=3.10"
|
| 7 |
+
dependencies = [
|
| 8 |
+
"beeai-framework",
|
| 9 |
+
"mcp",
|
| 10 |
+
"openbb",
|
| 11 |
+
"gradio",
|
| 12 |
+
"pydantic",
|
| 13 |
+
"mplfinance",
|
| 14 |
+
"pandas",
|
| 15 |
+
"yfinance",
|
| 16 |
+
"matplotlib"
|
| 17 |
+
]
|
| 18 |
+
|
| 19 |
+
[build-system]
|
| 20 |
+
requires = ["hatchling"]
|
| 21 |
+
build-backend = "hatchling.build"
|
| 22 |
+
|
| 23 |
+
[tool.hatch.build.targets.wheel]
|
| 24 |
+
packages = ["src"]
|