Metadata-Version: 2.1
Name: antodo
Version: 0.6.0
Summary: another todo app
Home-page: https://github.com/mikitachab/antodo
Author: Chabatarovich Mikita
Author-email: mikita.chabatarovich@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX :: Linux
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: safer (>=4.1.1,<5.0.0)
Description-Content-Type: text/markdown

# antodo

another todo CLI app with some useful features

## Requirements

- Python 3.7

## Installation

```shell
pip install antodo
```

## Usage

add todo

```shell
antodo add do something
```

add urgent todo

```shell
antodo add -u do something
```

show current todos

```shell
antodo show
```

remove todo by index based on todos order

```shell
antodo remove 1 2
```

set todo as urgent by index based on todos order

```shell
antodo urgent 3
```

