Metadata-Version: 2.4
Name: climan
Version: 1.0.0
Summary: Cross-platform config and manager for click console utilities.
Home-page: https://github.com/smartlegionlab/climan/
Author: Alexander Suvorov
Author-email: smartlegiondev@gmail.com
License: BSD 3-Clause License
Project-URL: Documentation, https://github.com/smartlegionlab/climan/blob/master/README.md
Project-URL: Release notes, https://github.com/smartlegionlab/climan/releases
Keywords: climan,click,click manager
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click~=8.0.1
Dynamic: license-file

# climan <sup>v1.0.0</sup>

Cross-platform config and manager for click console utilities.

---

[![PyPI Downloads](https://static.pepy.tech/badge/climan)](https://pepy.tech/projects/climan)
[![GitHub top language](https://img.shields.io/github/languages/top/smartlegionlab/climan)](https://github.com/smartlegionlab/climan/)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/climan?label=pypi%20downloads)](https://pypi.org/project/climan/)
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/smartlegionlab/climan)](https://github.com/smartlegionlab/climan/)
[![GitHub](https://img.shields.io/github/license/smartlegionlab/climan?style=flat-square)](https://github.com/smartlegionlab/climan/blob/master/LICENSE)
[![PyPI](https://img.shields.io/pypi/v/climan)](https://pypi.org/project/climan)
[![PyPI - Format](https://img.shields.io/pypi/format/climan)](https://pypi.org/project/climan)
[![GitHub Repo stars](https://img.shields.io/github/stars/smartlegionlab/climan?style=social)](https://github.com/smartlegionlab/climan/)
[![GitHub watchers](https://img.shields.io/github/watchers/smartlegionlab/climan?style=social)](https://github.com/smartlegionlab/climan/)
[![GitHub forks](https://img.shields.io/github/forks/smartlegionlab/climan?style=social)](https://github.com/smartlegionlab/climan/)

---

## ⚠️ Disclaimer

**By using this software, you agree to the full disclaimer terms.**

**Summary:** Software provided "AS IS" without warranty. You assume all risks.

**Full legal disclaimer:** See [DISCLAIMER.md](https://github.com/smartlegionlab/climan/blob/master/DISCLAIMER.md)

---

## Help:

### Install and Use:

- `pip install climan`

```python
from climan.managers import ClickManager

METADATA = {
    'name': 'Cli name',
    'title': 'Cli title',
    'description': 'Cli Description',
    'version': '0.0.0',
    'author': 'Cli Author',
    'email': 'cli@email.com',
    'url': 'https://cliurl.ru',
    'donate': 'https://clidonate.ru',
    'copyright': 'Cli copyright',
}

class CliManager(ClickManager):
    def __init__(self, metadata):
        super().__init__(metadata)

cli_man = CliManager(METADATA)
```

---

## License

**[BSD 3-Clause License](https://github.com/smartlegionlab/climan/blob/master/LICENSE)**

Copyright (©) 2026, [Alexander Suvorov](https://github.com/smartlegionlab)

---


