28 lines
645 B
TOML
28 lines
645 B
TOML
[tool.poetry]
|
|
name = "task-status"
|
|
version = "0.1.1"
|
|
description = "Utility to get status data built from taskwarrior"
|
|
authors = ["Alex Kelly <alex.kelly@franklin.edu>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
click = "^8.0.1"
|
|
python-dateutil = "^2.8.2"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^6.2.4"
|
|
flake8 = "^3.9.2"
|
|
python-semantic-release = "^7.19.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.scripts]
|
|
task-status = 'task_status.task_status:main'
|
|
|
|
[tool.semantic_release]
|
|
version_variable = [
|
|
"task_status/task_status.py:__version__",
|
|
"pyproject.toml:version"
|
|
]
|