Metadata-Version: 2.4
Name: tasknow
Version: 1.0.5
Summary: A super simple terminal to-do app that helps you focus on one task at a time.
Author: Decoding Chris
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Intended Audience :: End Users/Desktop
Classifier: Environment :: Console
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license
Dynamic: requires-python
Dynamic: summary

# TaskNow

A super simple terminal to-do app that helps you focus on one task at a time.

## Why use TaskNow?

- Stay focused by seeing just your current task
- Add, complete, and manage tasks easily from the terminal
- No accounts, no clutter — just your tasks

## Installation

You can install TaskNow directly from PyPI:

```bash
pip install tasknow
```

## Commands

Add a task:
```bash
tasknow add "Write report"
```

See your current task:
```bash
tasknow
```

Mark it done:
```bash
tasknow done
```

List all tasks:
```bash
tasknow list
```

Remove a task:
```bash
tasknow remove <id>
```

Show completed tasks:
```bash
tasknow completed
```

Un-complete a task:
```bash
tasknow undone <id>
```

Edit a task:
```bash
tasknow edit <id> "New description"
```

---

MIT License
