Metadata-Version: 2.1
Name: mailProc
Version: 0.6.0
Summary: Mail services creation microframework
Home-page: https://github.com/daxslab/mailproc
Author: Carlos Cesar Caballero Diaz
Author-email: ccesar@daxslab.com
License: LGPL 3.0
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.4, <4
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: pytest-pep8 ; extra == 'dev'
Requires-Dist: pytest-cov ; extra == 'dev'
Requires-Dist: sphinx ; extra == 'dev'
Requires-Dist: tox ; extra == 'dev'

# mailProc
Mail services creation microframework

## What is mailProc?
mailProc is a Python microframework for building email-bassed services. 
The main goal is to easily automate email related tasks.

## Where can I find the docs?
A prebuilt version of current documentation can be found in 
http://mailproc.readthedocs.io/en/latest/

## Installing mailProc
Mailproc can be installed using Pypi, so you can simply call:

`pip install mailproc`
   
You can also download the last version from releases and use it as any other python module

## Testing mailProc
You can run mailProc tests using pytest running it from the project root:

`python -m pytest`

You can also run the complete tests for multiple plataforms using tox from the project root:

`tox`

