-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
71 lines (61 loc) · 1.73 KB
/
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[project]
name = "kanban-tui"
version = "0.6.4"
description = "customizeable task tui powered by textual"
authors = [
{ name = "Zaloog", email = "[email protected]" }
]
dependencies = [
"textual-datepicker>=0.2.4",
"pyyaml>=6.0.2",
"pydantic>=2.9.2",
"click>=8.1.7",
"textual-plotext>=1.0.0",
"textual>=1.0.0",
]
readme = "README.md"
requires-python = ">= 3.10"
license = { text = "MIT" }
keywords = ["python", "textual", "tui", "kanban"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
[project.urls]
Repository = "https://github.com/Zaloog/kanban-tui"
Changelog = "https://github.com/Zaloog/kanban-tui/blob/main/CHANGELOG.md"
[project.scripts]
ktui = "kanban_tui.__main__:cli"
[project.optional-dependencies]
web = [
"textual-serve>=1.1.1",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "file"
addopts = "--cov src/kanban_tui --cov-report term-missing --verbose --color=yes -n 4 --dist=loadfile"
testpaths = ["tests"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pre-commit>=3.8.0",
"pytest>=8.3.3",
"pytest-cov>=5.0.0",
"pytest-xdist>=3.6.1",
"pytest-asyncio>=0.24.0",
"textual-dev>=1.6.1",
"freezegun>=1.5.1",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/kanban_tui"]