Files
shellmate/pyproject.toml
2026-01-27 15:11:08 +00:00

47 lines
964 B
TOML

[project]
name = "shellmate"
version = "0.1.0"
description = "SSH into chess mastery - Terminal chess over SSH"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Greg Hendrickson", email = "greg@gregh.dev" }]
requires-python = ">=3.11"
dependencies = [
"textual>=0.50.0",
"python-chess>=1.10.0",
"asyncssh>=2.14.0",
"redis>=5.0.0",
"asyncpg>=0.29.0",
"stockfish>=3.28.0",
"rich>=13.7.0",
"pydantic>=2.5.0",
"pydantic-settings>=2.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.2.0",
"mypy>=1.8.0",
]
[project.scripts]
shellmate = "shellmate.cli:main"
shellmate-server = "shellmate.ssh.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.mypy]
python_version = "3.11"
strict = true