Metadata-Version: 2.1
Name: senile
Version: 0.1.0
Summary: A command-line todo utility.
Home-page: https://gitlab.com/nul.one/senile
Author: Predrag Mandic
Author-email: predrag@nul.one
License: BSD
Download-URL: https://gitlab.com/nul.one/senile/-/archive/0.1.0/senile-0.1.0.tar.gz
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Utilities
Requires-Python: >=3.4.6
Description-Content-Type: text/markdown
Requires-Dist: click (<8.0,>=6.7)
Requires-Dist: prompt-toolkit (<3.0,>=2.0)
Requires-Dist: texttable (<2.0,>=1.6.2)


senile
==================================================
[![PyPI version](https://badge.fury.io/py/senile.svg)](https://badge.fury.io/py/senile)
[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)

A command-line todo list.

Overview
-------------------------

This utility functions as a personal task manager. You can create tasks with tags and they are saved in local file in json format.

Installation
-------------------------

### install from pypi (recommend)
`pip3 install senile`

### install from git (latest master)
`pip3 install -U git+https://gitlab.com/nul.one/senile.git`

Usage
-------------------------

Commands:
  add     Add a new task.
  done    Set following task(s) to done.
  ls      List tasks.
  mod     Modify existing task.
  rm      Delete following task(s).
  undone  Set following task(s) to not done.




