sba-scouting/pyproject.toml
Cal Corum 5b307a91a6 Initial SBA Scout TUI application
- Dashboard with roster summary (Majors/Minors/IL counts, sWAR usage)
- Roster screen with tabbed view (Majors/Minors/IL) showing:
  - Batters table: Name, Hand, Positions, vL/vR/Ovr ratings, sWAR, Defense
  - Pitchers table: Name, Hand, Positions, vL/vR/Ovr ratings, sWAR, S/R/C endurance
- Card data importer from BatterCalcs/PitcherCalcs CSV exports
  - Imports pre-calculated vL/vR/Total ratings directly from spreadsheet
- API client for syncing players/teams from Major Domo league API
- SQLite database with SQLAlchemy async models
- Configurable settings via .env (team info, roster slots, sWAR cap)
- Placeholder screens for Matchup Scout, Lineup Builder, Transactions
2026-01-25 00:22:20 -06:00

32 lines
656 B
TOML

[project]
name = "sba-scout"
version = "0.1.0"
description = "TUI application for SBA fantasy baseball scouting and team management"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"aiosqlite>=0.22.1",
"httpx>=0.28.1",
"pydantic>=2.12.5",
"pydantic-settings>=2.12.0",
"sqlalchemy>=2.0.46",
"textual>=7.3.0",
]
[project.scripts]
sba-scout = "sba_scout.app:main"
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/sba_scout"]