25 lines
637 B
TOML
25 lines
637 B
TOML
# Project metadata and build system for a production-grade Python package
|
|
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "idea46-solarpulse-viz-real"
|
|
version = "0.1.0"
|
|
description = "SolarPulse Viz: Real-time Visualization & Anomaly Insights for Distributed Solar, Wind, and Storage"
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"fastapi>=0.82.0",
|
|
"uvicorn[standard]>=0.18.0",
|
|
"pydantic>=1.10.2",
|
|
"sqlalchemy>=1.4",
|
|
"scikit-learn>=1.3",
|
|
"pandas>=1.5",
|
|
"numpy>=1.23",
|
|
"httpx>=0.24.0",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|