Metadata-Version: 2.1
Name: DRY-python-utilities
Version: 1.0.0
Summary: A set of python utilities
Home-page: https://github.com/monthero/dry-pyutils
Author: Vasco Monteiro
Author-email: vmnokk@gmail.com
License: MIT
Project-URL: Changelog, https://github.com/monthero/dry-pyutils/blob/master/CHANGELOG.md
Project-URL: Instructions, https://github.com/monthero/dry-pyutils/blob/master/README.md
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
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: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.5.0
Description-Content-Type: text/markdown
Requires-Dist: python-slugify
Requires-Dist: bleach

# DRY python utilities
[![Package name][package-name]][package-name] [![Current package version][curr-version-badge]][curr-version-badge] [![Supported python versions][python-version-badge]][python-version-badge] [![MIT License Badge][license-badge]][license] [![Code style: black][black-badge]](https://github.com/psf/black)

## Introduction
This package's goal is to offer a set of utility methods I end up using in a lot of projects.


## Table of Contents
* [Installation](#installation)
* [Changelog](#changelog)
* [Roadmap](#roadmap)
* [Contributing](#contributing)
* [License](#license)


## Installation
Install the package using pip, or easy_install
```shell
$ pip install DRY-python-utilities
```

## Changelog
Keep up with the changes [here](CHANGELOG.md).


## Contributing
Question, comments and suggestions are all welcome. Please create an issue or email me.
I'll do my best to reply as soon as possible and to include every suggestion in any way that I can.

- Code should be linted using [black](https://github.com/psf/black), [isort](https://github.com/PyCQA/isort) and, finally, checked with [flake8](https://github.com/PyCQA/flake8). Or just use pre-commit with the settings in the project.
- All documentation should be done in [NumPy Style Python Docstrings](https://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_numpy.html).

## License
MIT

## Mentions
A special thank you to [bleach](https://github.com/mozilla/bleach) and [python-slugify](https://github.com/un33k/python-slugify).

[package-name]: https://img.shields.io/badge/DRY%20Python%20Utilities-blue.svg
[curr-version-badge]: https://img.shields.io/badge/version-1.0.0-red.svg
[python-version-badge]: https://img.shields.io/badge/python-%3E=%203.5-green.svg
[license]: ./LICENSE
[license-badge]: https://img.shields.io/badge/license-MIT-yellow.svg
[black-badge]: https://img.shields.io/badge/code%20style-black-000000.svg


# Changelog

All notable changes to this project will be documented in this file.

## [1.0.0] - 2021-04-28

### Added
- Add a `valitation` module with a set of utility methods to determine string's contents formats/types
- Add a `transformation` module with a set of utility methods to transform strings

[1.0.0]: https://github.com/monthero/dry-pyutils/releases/tag/v1.0.0


