Metadata-Version: 2.1
Name: jomiel-kore
Version: 0.2.0
Summary: Minimalistic foundation for creating new Python applications
Home-page: https://github.com/guendto/jomiel-kore
Author: Toni Gündoğdu
Author-email: 47444442+guendto@users.noreply.github.com
License: Apache2.0
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: NOTICE
Requires-Dist: configargparse
Requires-Dist: deprecated
Requires-Dist: pyzmq
Requires-Dist: ruamel.yaml
Requires-Dist: ujson
Requires-Dist: validators
Requires-Dist: importlib-resources ; python_version < "3.7"
Requires-Dist: importlib-metadata ; python_version < "3.8"

# jomiel-kore

[![pypi-pyversions](https://img.shields.io/pypi/pyversions/jomiel-kore?color=%230a66dc)][pypi]
[![pypi-v](https://img.shields.io/pypi/v/jomiel-kore?color=%230a66dc)][pypi]
[![pypi-wheel](https://img.shields.io/pypi/wheel/jomiel-kore?color=%230a66dc)][pypi]
[![pypi-status](https://img.shields.io/pypi/status/jomiel-kore?color=%230a66dc)][pypi]
[![code-style](https://img.shields.io/badge/code%20style-black-000000.svg)][black]

[pypi]: https://pypi.org/project/jomiel-kore
[black]: https://pypi.org/project/black

The minimalistic foundation for creating new [Python] applications.

## Requirements

`jomiel-kore` is written for [Python] 3.6 and later.

## Installation

```shell
pip install jomiel-kore
```

## Building packages from repo

```shell
git clone https://github.com/guendto/jomiel-kore
cd jomiel-kore
git tag -s KEYID -am 'jomiel-kore version VERSION (INITIALS)' TAGNAME
pip install pep517
python -m pep517.build [-s|-b] .
```

The packages are created under the dist/ dir.

## License

`jomiel-kore` is licensed under the [Apache License version 2.0][aplv2].

## Acknowledgements

`jomiel-kore` uses [pre-commit] and its many hooks to lint and format
the project files. See the .pre-commit-config.yaml file for details.

[python]: https://www.python.org/about/gettingstarted/
[aplv2]: https://www.tldrlegal.com/l/apache2
[pre-commit]: https://pre-commit.com/
[pypi]: https://pypi.org


