Files
lowkey_backtest/pyproject.toml
Simon Moisy 0c82c4f366 Implement FastAPI backend and Vue 3 frontend for Lowkey Backtest UI
- Added FastAPI backend with core API endpoints for strategies, backtests, and data management.
- Introduced Vue 3 frontend with a dark theme, enabling users to run backtests, adjust parameters, and compare results.
- Implemented Pydantic schemas for request/response validation and SQLAlchemy models for database interactions.
- Enhanced project structure with dedicated modules for services, routers, and components.
- Updated dependencies in `pyproject.toml` and `frontend/package.json` to include FastAPI, SQLAlchemy, and Vue-related packages.
- Improved `.gitignore` to exclude unnecessary files and directories.
2026-01-14 21:44:04 +08:00

34 lines
677 B
TOML

[project]
name = "lowkey-backtest"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"ccxt>=4.5.32",
"numpy>=2.3.2",
"pandas>=2.3.1",
"ta>=0.11.0",
"vectorbt>=0.28.2",
"scikit-learn>=1.6.0",
"matplotlib>=3.10.0",
"plotly>=5.24.0",
"requests>=2.32.5",
"python-dotenv>=1.2.1",
# API dependencies
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"sqlalchemy>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
]
[tool.pytest.ini_options]
pythonpath = ["."]
markers = [
"network: marks tests as requiring network access",
]