mirror of
https://github.com/vee1e/bitsat_predictor.git
synced 2026-09-01 10:59:02 +00:00
* migrations: switching over from pip to uv as pkg-manager & adding wrangler.toml file for cloudflare deployment-ease * fix: resolving mismatch in name in wrangler.toml file * fix: downgrading required-python version && updating to current date in wrangler.toml file for latest-runtime capabilities * fix: removing uvicorn as a server-service from deployment * migrations: refactored frontend to use bun as default pkg-manager over npm, downsized plotly to use minimum number of components to aptly reduce bundling space & dockerfile and sdk on huggingspace for backend logic * fix: removed buildinfo files, removed unnecessary tsconfig settings which was previously used in bun build to check local builds, resolving components in Header.tsx, resetting isLoaded state in GraphPlot.tsx file
16 lines
320 B
TOML
16 lines
320 B
TOML
[project]
|
|
name = "backend"
|
|
version = "0.1.0"
|
|
description = "Uses FastAPI to send response to frontend"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"fastapi>=0.128.8",
|
|
"pandas>=3.0.0",
|
|
"plotly>=6.5.2",
|
|
"pydantic>=2.12.5",
|
|
"python-dotenv>=1.2.1",
|
|
"uvicorn>=0.40.0",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = []
|