Metadata-Version: 2.1
Name: task
Version: 0.1.4
Summary: Task cli tool
Home-page: https://github.com/matteyeux/task
License: MIT
Keywords: task,pytask
Author: matteyeux
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Utilities
Requires-Dist: click (>=7.1.2,<8.0.0)
Requires-Dist: click-default-group (>=1.2.2,<2.0.0)
Requires-Dist: python-dateutil (>=2.8.1,<3.0.0)
Requires-Dist: tabulate (>=0.8.7,<0.9.0)
Project-URL: Repository, https://github.com/matteyeux/task
Description-Content-Type: text/markdown

# task

[![Build Status](http://drone.matteyeux.com:8080/api/badges/matteyeux/task/status.svg)](http://drone.matteyeux.com:8080/matteyeux/task)

Taskwarrior-like CLI tool

```
Usage: task [OPTIONS] COMMAND [ARGS]...

Options:
  -v, --version  print version
  --help         Show this message and exit.

Commands:
  add   Add task
  done  Finished task.
  ls    List tasks.
  rm    Remove a task.
```

### Installation

Make sure to have [poetry](https://pypi.org/project/poetry)

#### Github repository
```bash
$ git clone https://github.com/matteyeux/task
$ cd task
$ poetry install
```

#### PyPI
- Installation : `pip3 install task`
- Update : `pip3 install --upgrade task`

### Setup

Make sure to have `~/.local/bin` in your `$PATH` (`export PATH=$PATH:~/.local/bin`)

The first time you run `task add` command it will setup the SQLite3 database.


### Examples



### Credits
Powered by [etnawrapper](https://github.com/tbobm/etnawrapper)

