Metadata-Version: 2.4
Name: kboard
Version: 0.5.0
Summary: Console-based Kanban task manager created in Python.
License: MIT License
         
         Copyright (c) 2026 Óscar Miranda
         
         Permission is hereby granted, free of charge, to any person obtaining a copy
         of this software and associated documentation files (the "Software"), to deal
         in the Software without restriction, including without limitation the rights
         to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         copies of the Software, and to permit persons to whom the Software is
         furnished to do so, subject to the following conditions:
         
         The above copyright notice and this permission notice shall be included in all
         copies or substantial portions of the Software.
         
         THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
         SOFTWARE.
License-File: LICENSE
Keywords: kanban,board,project,management,cli
Author: Óscar Miranda
Author-email: oscarmiranda3615@gmail.com
Requires-Python: >=3.14.2
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
Requires-Dist: rich (>=14.3.2,<15.0.0)
Requires-Dist: sqlalchemy (>=2.0.46,<3.0.0)
Requires-Dist: typer (>=0.21.1,<0.22.0)
Project-URL: Homepage, https://github.com/OscarM3615/kboard/
Project-URL: Repository, https://github.com/OscarM3615/kboard/
Description-Content-Type: text/markdown

# kboard

Console-based Kanban task manager created in Python.

Create and manage tasks visually in your terminal using handy commands.

## Features

- CLI based Kanban board.
- Easy setup.
- Simple commands.
- Structured database file.

## Installation

Install using pip running the following command in the terminal:

## Usage

If you installed the library, you can use the CLI as a system command:

```sh
kb COMMAND [ARGS] ...
```

### Examples

Here are some examples of the commands available:

```sh
# List the existing boards.
kb board ls

# Create a new board.
kb board add "Board name"

# Add a task to the backlog.
kb task add "Task title"

# Add a task to a board with high priority.
kb task add --board 1 --priority 3 "Important task"

# Move a task
kb task mv 2
```

## Contributing

Thank you for considering contributing to my project! Any pull requests are
welcome and greatly appreciated. If you encounter any issues while using
the project, please feel free to post them on the issue tracker.

To contribute to the project, please follow these steps:

1. Fork the repository.
2. Add a new feature or bug fix.
3. Commit them using descriptive messages, using
   [conventional commits](https://www.conventionalcommits.org/) is recommended.
4. Submit a pull request.

## License

This project is licensed under the MIT License. See the [LICENSE](LICENSE) file
for more details.

