Metadata-Version: 2.1
Name: seveno-pyutil
Version: 0.8.0
Summary: Various unsorted Python utilities
Author-email: Tomislav Adamic <tomislav.adamic@gmail.com>
License: MIT
Project-URL: Source, https://github.com/tadams42/seveno_pyutil
Project-URL: Documentation, https://seveno-pyutil.readthedocs.io/en/latest/
Keywords: utilities
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: colorlog
Requires-Dist: holidays
Requires-Dist: marshmallow (>=3)
Requires-Dist: pretty-traceback
Requires-Dist: pygments
Requires-Dist: python-dateutil (>=2.6.0)
Requires-Dist: sqlparse
Requires-Dist: tzlocal
Provides-Extra: dev
Requires-Dist: black ; extra == 'dev'
Requires-Dist: bump2version ; extra == 'dev'
Requires-Dist: check-manifest ; extra == 'dev'
Requires-Dist: coverage ; extra == 'dev'
Requires-Dist: factory-boy ; extra == 'dev'
Requires-Dist: faker ; extra == 'dev'
Requires-Dist: furo ; extra == 'dev'
Requires-Dist: ipython ; extra == 'dev'
Requires-Dist: isort ; extra == 'dev'
Requires-Dist: myst-parser ; extra == 'dev'
Requires-Dist: pytest-spec ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: sphinx-copybutton ; extra == 'dev'
Requires-Dist: sphinx ; extra == 'dev'
Requires-Dist: twine ; extra == 'dev'
Provides-Extra: docs
Requires-Dist: furo ; extra == 'docs'
Requires-Dist: myst-parser ; extra == 'docs'
Requires-Dist: sphinx ; extra == 'docs'
Requires-Dist: sphinx-copybutton ; extra == 'docs'
Provides-Extra: tests
Requires-Dist: check-manifest ; extra == 'tests'
Requires-Dist: pytest ; extra == 'tests'
Requires-Dist: coverage ; extra == 'tests'
Requires-Dist: factory-boy ; extra == 'tests'
Requires-Dist: faker ; extra == 'tests'
Requires-Dist: pytest-spec ; extra == 'tests'

# Overview

[![PyPI Status](https://badge.fury.io/py/seveno-pyutil.svg)](https://badge.fury.io/py/seveno-pyutil)
[![license](https://img.shields.io/pypi/l/seveno_pyutil.svg)](https://opensource.org/licenses/MIT)
[![tests](https://github.com/tadams42/seveno_pyutil/actions/workflows/tests.yaml/badge.svg?branch=development)](https://github.com/tadams42/seveno_pyutil/actions/workflows/tests.yaml)
[![codecov](https://codecov.io/gh/tadams42/seveno_pyutil/branch/development/graph/badge.svg?token=9WIWK7B3XX)](https://codecov.io/gh/tadams42/seveno_pyutil)
[![Documentation Status](https://readthedocs.org/projects/seveno_pyutil/badge/?version=latest)](http://seveno_pyutil.readthedocs.io/en/latest/?badge=latest)
[![python_versions](https://img.shields.io/pypi/pyversions/seveno_pyutil.svg)](https://pypi.org/project/seveno_pyutil/)

Various unsorted Python utilities. [Examples of usage](https://seveno-pyutil.readthedocs.io/en/latest/examples_and_usage.html)

## Installation

~~~sh
pip install seveno_pyutil
~~~

## Tests

~~~sh
py.test
~~~

## Development mode

Install with extra dev packages

~~~sh
pip install -e .[dev]
~~~
