Metadata-Version: 2.1
Name: cruft-helloworld
Version: 0.2.0
Summary: Cruft Python Hello-World
Home-page: https://github.com/yoyonel/cruft_helloworld
License: BSD-3-Clause
Author: lionel atty
Author-email: yoyonel@hotmail.com
Requires-Python: >=3.6.1,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Dist: Cython (>=0.29.21,<0.30.0)
Requires-Dist: click (>=7.1.2,<8.0.0)
Requires-Dist: rich (>=9.4.0,<10.0.0)
Project-URL: Documentation, https://github.com/yoyonel/cruft_helloworld/blob/master/README.md
Project-URL: Repository, https://github.com/yoyonel/cruft_helloworld
Description-Content-Type: text/markdown

# cruft_helloworld

![PyPI](https://img.shields.io/pypi/v/cruft_helloworld?style=flat-square)
![GitHub Workflow Status (master)](https://img.shields.io/github/workflow/status/yoyonel/cruft_helloworld/Test%20&%20Lint/master?style=flat-square)
![Coveralls github branch](https://img.shields.io/coveralls/github/yoyonel/cruft_helloworld/master?style=flat-square)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/cruft_helloworld?style=flat-square)
![PyPI - License](https://img.shields.io/pypi/l/cruft_helloworld?style=flat-square)

Cruft Python Hello-World

## Requirements

* Python 3.6.1 or newer
* [poetry](https://poetry.eustance.io/) 1.1 or newer


## Development

This project uses [poetry](https://poetry.eustace.io/) for packaging and
managing all dependencies and [pre-commit](https://pre-commit.com/) to run
[flake8](http://flake8.pycqa.org/), [isort](https://pycqa.github.io/isort/),
[mypy](http://mypy-lang.org/) and [black](https://github.com/python/black).

Clone this repository and run

```bash
poetry install
poetry run pre-commit install
```

to create a virtual enviroment containing all dependencies.
Afterwards, You can run the test suite using

```bash
poetry run pytest
```

This repository follows the [Conventional Commits](https://www.conventionalcommits.org/)
style.

### Cookiecutter template

This project was created using [cruft](https://github.com/cruft/cruft) and the
[cookiecutter-pyproject](https://github.com/escaped/cookiecutter-pypackage) template.
In order to update this repository to the latest template version run

```sh
cruft update
```

in the root of this repository.


