task-status/pyproject.toml

29 lines
663 B
TOML

[tool.poetry]
name = "task-status"
version = "0.2.0"
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"
pylint = "^2.9.6"
[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"
]