Metadata-Version: 2.1
Name: laflem
Version: 0.4.0
Summary: Tools collection
Home-page: https://github.com/Lunik/laflem
Download-URL: https://pypi.org/project/laflem/
Author: Guillaume MARTINEZ
Author-email: lunik@tiwabbit.fr
Maintainer: Guillaume MARTINEZ
Maintainer-email: lunik@tiwabbit.fr
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.8.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: rich==13.*
Requires-Dist: importlib_metadata==6.*
Requires-Dist: requests==2.*
Provides-Extra: dev
Requires-Dist: pylint; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: twine; extra == "dev"
Requires-Dist: build; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: pytest-html; extra == "dev"
Requires-Dist: pytest-xdist; extra == "dev"
Requires-Dist: pytest-helpers-namespace; extra == "dev"
Requires-Dist: pytest-order; extra == "dev"
Requires-Dist: wheel; extra == "dev"
Provides-Extra: git
Requires-Dist: gitpython==3.*; extra == "git"

# LaFlem

## Description

LaFlem is a simple, easy to use, and lightweight Python binary for creating and managing recuring task in the life of an IT guy. It is designed to be easy to use and easy to understand. It is also designed to be lightweight and fast. It is not designed to be a full fledged task manager, but rather a simple tool to help you manage your day to day tasks.

## Installation

To install LaFlem, simply run the following command:

```bash
pip install --user laflem
```

or with an isolated environment:

```bash
python -m venv ~/bin/laflem_venv
~/bin/laflem_venv/bin/pip install laflem

ln -s ~/bin/laflem_venv/bin/laflem ~/bin/laflem
ln -s ~/bin/laflem_venv/bin/lf ~/bin/lf
```

## Usage

To use LaFlem, simply run the following command :

```bash
laflem --help
```

or with the alias :

```bash
lf --help
```

## Contributing

To contribute to LaFlem, simply fork the repository and create a pull request. Please make sure to include a detailed description of your changes. Here are the things I will check during the review :

- Is CHANGELOG.md have been updated (**required**)
- Is the lint score did not decrease (**required**)
- Is the test coverage did not decrease (**required**)
- Is the documentation have been updated (**if required**)
- If tests have been added (**optional**)

### Development

This repository uses [Taskfile](https://taskfile.dev) to manage the development tasks. To see the available tasks, run the following command:

```bash
task --list
```
