15 lines
284 B
TOML
15 lines
284 B
TOML
[project]
|
|
name = "chess-pressure"
|
|
version = "0.1.0"
|
|
description = "Chess pressure heatmap visualization"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi",
|
|
"uvicorn",
|
|
"python-chess",
|
|
]
|
|
|
|
[project.scripts]
|
|
chess-pressure = "chess_pressure.app:main"
|