Metadata-Version: 2.5
Name: muck_sig
Version: 0.1.1
Summary: A small attribution banner for Python projects made by Muck.
Project-URL: Discord, https://discord.gg/JjkF6YENgy
Author: Muck
License: MIT
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# muck_sig

Add a short Muck attribution banner to a Python project.

## Install

```bash
pip install muck_sig
```

## Use

```python
import muck_sig

muck_sig.sign()
```

This prints:

```text
This project is made by Muck, https://discord.gg/JjkF6YENgy
```

By default, the message remains visible for two seconds and then the terminal is cleared. Configure either behavior when needed:

```python
muck_sig.sign(delay=0, clear_screen=False)
```

## Publishing to PyPI

Choose an available project name on PyPI if `muck_sig` is already taken, then build and upload:

```bash
python -m pip install --upgrade build twine
python -m build
python -m twine upload dist/*
```
