Metadata-Version: 2.1
Name: dialoget
Version: 0.3.0
Summary: A Sentence Python decorator for displaying dynamic log messages.
Project-URL: Documentation, https://github.com/dialoget/py#readme
Project-URL: Issues, https://github.com/dialoget/py/issues
Project-URL: Source, https://github.com/dialoget/py
Author-email: Tom Sapletta <tom@sapletta.com>
License-Expression: Apache-2.0
License-File: LICENSE
Keywords: Sentence,console,dialogware,framework,terminal,test,time
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# dialoget [py.dialoget.com](https://py.dialoget.com/)


[![PyPI - Version](https://img.shields.io/pypi/v/dialoget.svg)](https://pypi.org/project/dialoget)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/dialoget.svg)](https://pypi.org/project/dialoget)

-----

**Table of Contents**

- [Installation](#installation)
- [License](#license)

## Installation

```console
pip install dialoget
```

## License

`dialoget` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.

## Version

```bash
hatch version
```


### Publish
After the build completes successfully, upload the new distribution files to the Python Package Index (PyPI).
Upload your package to PyPI using `twine`
   ```shell
   twine upload dist/*
   ```

## CONTRIBUTION

[Introduction - Hatch](https://hatch.pypa.io/latest/intro/)

```bash
hatch new dialoget
hatch version minor
python -m build
```


```
dialoget
├── src
│   └── dialoget
│       ├── __about__.py
│       └── __init__.py
├── tests
│   └── __init__.py
├── LICENSE.txt
├── README.md
└── pyproject.toml
```