-
Notifications
You must be signed in to change notification settings - Fork 281
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
58 lines (50 loc) · 1.28 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
58
[project]
name = "KaTrain"
version = "1.17.1"
description = "Go/Baduk/Weiqi playing and teaching app with a variety of AIs"
authors = [{ name = "Sander Land" }]
requires-python = ">=3.9,<3.14"
readme = "README.md"
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Games/Entertainment :: Board Games",
]
dependencies = [
"pygame~=2.0 ; platform_system == 'Darwin'",
"screeninfo>=0.8.1,<0.9 ; platform_system != 'Darwin'",
"chardet>=5.2.0,<6",
"docutils>=0.21.2",
"ffpyplayer>=4.5.1",
"urllib3>=2.2.2",
"kivy>=2.3.1",
"kivymd==0.104.1",
]
[project.urls]
Homepage = "https://github.com/sanderland/katrain"
[project.scripts]
katrain = "katrain.__main__:run_app"
[dependency-groups]
dev = [
"black>=24.8.0,<25",
"polib>=1.2.0,<2",
"pyinstaller>=6.14.1",
"pytest>=8.3.2,<9",
"tomli>=1.2.0 ; python_version < '3.11'",
]
[tool.uv]
default-groups = [
"dev",
]
[tool.black]
line-length = 120
[tool.hatch.build.targets.sdist]
include = ["katrain"]
[tool.hatch.build.targets.wheel]
include = ["katrain"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"