-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[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.12"
dependencies = [
"textual>=7.4.0",
"python-chess>=1.999",
"asyncssh>=2.22.0",
"redis>=7.1.0",
"asyncpg>=0.30.0",
"stockfish>=4.0.6",
"rich>=14.3.0",
"pydantic>=2.12.0",
"pydantic-settings>=2.7.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.25.0",
"ruff>=0.9.0",
"mypy>=1.14.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 = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.mypy]
python_version = "3.12"
strict = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
filterwarnings = [
"ignore::DeprecationWarning",
]