Metadata-Version: 2.1
Name: python-todo
Version: 0.4
Summary: A command line todo application
Home-page: http://github.com/weaverdyl/python-todo
Author: Dylan Weaver
Author-email: dylan@weaverdyl.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: terminaltables

## Python-Todo

A simple todo list CLI tool!

## Installation

```pip install python-todo```

(Python 3 is required)

## Valid Commands

<dl>
	<dt>Default</dt>
    <dd>Prints out the current task list</dd>
	<dt>-a/--add</dt>
    <dd>Prompts user for task information and adds it to the task list</dd>
    <dt>-r/--remove</dt>
    <dd>Prompts the user for a row ID to remove from the task list</dd>
    <dt>-f/--finish</dt>
    <dd>Prompts the user for a row ID to change to a finished state</dd>
    <dt>-u/--unfinish</dt>
    <dd>Prompts the user for a row ID to change to an unfinished state</dd>
    <dt>-c/--change</dt>
    <dd>Prompts the user for a row ID to change information for</dd>
    <dt>-v/--view</dt>
    <dd>Prints out the current task list</dd>
    <dt>-h/--help</dt>
    <dd>Prints out the valid commands</dd>
</dl>

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. Python-Todo


