mirror of
https://github.com/ghndrx/shellmate.git
synced 2026-02-10 23:04:59 +00:00
Initial scaffold for ShellMate - SSH chess TUI
This commit is contained in:
46
pyproject.toml
Normal file
46
pyproject.toml
Normal file
@@ -0,0 +1,46 @@
|
||||
[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
|
||||
Reference in New Issue
Block a user