initial checkin

This commit is contained in:
Alex Kelly 2021-08-17 12:12:01 -04:00
commit 2362235231
3 changed files with 43 additions and 0 deletions

17
pyproject.toml Normal file
View file

@ -0,0 +1,17 @@
[tool.poetry]
name = "task-status"
version = "0.1.0"
description = "Utility to get status data built from taskwarrior"
authors = ["Alex Kelly <alex.kelly@franklin.edu>"]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
task-status = 'task_status.task_status:main'