23 lines
357 B
TOML
23 lines
357 B
TOML
[project]
|
|
name = "topen"
|
|
version = "0.1.0"
|
|
description = "Quickly edit notes for your taskwarrior tasks"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"tasklib>=2.5.1",
|
|
]
|
|
|
|
[tool.uv]
|
|
package = true
|
|
|
|
[project.scripts]
|
|
topen = "topen:main"
|
|
|
|
[tool.pyright]
|
|
typeCheckingMode = "standard"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pdoc>=15.0.1",
|
|
]
|