mnds18/agentic-ts-forecasting-system
0
1[project]2name = "agentic-ts-forecasting"3version = "0.1.0"4description = "Agentic AI system for end-to-end time series forecasting using modular LLM agents"5authors = [6 { name = "Mrig", email = "your.email@example.com" }7]8readme = "README.md"9license = { text = "MIT" }10requires-python = ">=3.9"11 12dependencies = [13 "pandas==2.2.1",14 "numpy==1.26.4",15 "prophet==1.1.5",16 "matplotlib==3.8.4",17 "plotly==5.19.0",18 "openai==1.23.6",19 "flask==3.0.2",20 "streamlit==1.33.0",21 "fpdf==1.7.2",22 "python-docx==1.1.0",23 "tabulate==0.9.0"24]25 26[project.optional-dependencies]27dev = [28 "black==24.3.0",29 "flake8==7.0.0",30 "jupyter==1.0.0"31]32 33[tool.setuptools]34packages = ["agentic_ts_forecasting_system"]35 36[build-system]37requires = ["setuptools>=61.0"]38build-backend = "setuptools.build_meta"39 