Metadata-Version: 2.1
Name: ktz
Version: 0.1
Summary: KTZ Python Tools
Home-page: https://github.com/kantholtz/ktz
Author: Felix Hamann
Author-email: felix@hamann.xyz
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/kantholtz/ktz/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: gitpython (==3.*)
Provides-Extra: dev
Requires-Dist: build ; extra == 'dev'
Requires-Dist: ipdb ; extra == 'dev'
Requires-Dist: ipython ; extra == 'dev'
Requires-Dist: black ; extra == 'dev'
Requires-Dist: flake8 ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: pytest-watch ; extra == 'dev'
Requires-Dist: coverage ; extra == 'dev'

# KTZ - Python Tools

[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg?style=for-the-badge)](https://github.com/psf/black)
[![master checks](https://img.shields.io/github/workflow/status/kantholtz/ktz/Current%20Master%20Checks?style=for-the-badge&label=Master%20Checks)](https://github.com/kantholtz/ktz/actions/workflows/development.yml)


My personal Python toolbox.


## Installation

Python 3.9 is required.

``` console
$ conda create -n ktz python=3.9
$ conda activate ktz
$ pip install ktz
```

For a local installation with all dev dependencies:

``` console
$ git clone https://github.com/kantholtz/ktz.git
$ cd ktz
$ conda create -n ktz python=3.9
$ conda activate ktz
$ pip install .[dev]

# run tests
$ pytest

# to continually run tests
$ ptw -c

# to check code coverage
$ coverage run -m pytest
$ coverage report
$ coverage html
```


