-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (42 loc) · 901 Bytes
/
pyproject.toml
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
[project]
name = "that-game"
version = "0.0.1.12"
description = "Add your description here"
authors = [
{ name = "tanzhijian", email = "[email protected]" }
]
dependencies = [
"pandas>=2.2.3",
"pydantic>=2.9.2",
"matplotlib>=3.9.2",
"mplsoccer>=1.4.0",
]
readme = "README.md"
requires-python = ">= 3.10"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"ruff>=0.7.0",
"mypy>=1.12.1",
"pytest>=8.3.3",
"ipykernel>=6.29.5",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/that_game"]
[tool.ruff]
lint.select = ["E", "F", "I"]
line-length = 88
[tool.mypy]
ignore_missing_imports = true
strict = true
plugins = ["pydantic.mypy"]
[tool.pytest.ini_options]
testpaths = ["tests",]
[tool.pyright]
venvPath = "."
venv = ".venv"