-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (48 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
57 lines (48 loc) · 1.17 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
54
55
56
57
[build-system]
requires = ["hatchling >= 1.27.0"]
build-backend = "hatchling.build"
[project]
name = "python-2048"
description = "A CLI implementation of the 2048 game, written in Python."
dynamic = ["version"]
requires-python = ">=3.11"
readme = "README.md"
license-files = ["LICENSE"]
authors = [{ name = "Cliff Lau", email = "[email protected]" }]
classifiers = ["Private :: Do Not Upload"]
dependencies = [
"loguru>=0.7.3",
"pydantic-ai>=0.4.4",
"tabulate>=0.9.0",
"typer>=0.16.0",
]
[dependency-groups]
dev = [
"build>=1.2.2.post1",
"coverage>=7.9.2",
"pre-commit>=4.2.0",
"pyright>=1.1.403",
"pytest>=8.4.1",
"pytest-cov>=6.2.1",
"ruff>=0.12.3",
]
[project.scripts]
python-2048 = "python_2048.cli.app:app"
[tool.ruff]
line-length = 100
[tool.pyright]
venvPath = "."
venv = ".venv"
exclude = ["**/__pycache__", "**/.*"]
[tool.pytest.ini_options]
xfail_strict = true
testpaths = ["tests"]
markers = ["llm_evaluation"]
addopts = ["--strict-markers", "--cov=src/python_2048"]
[tool.coverage.run]
branch = true
[tool.coverage.report]
show_missing = true
omit = ["**/exceptions.py"]
[tool.hatch.version]
path = "src/python_2048/version.py"