Metadata-Version: 2.1
Name: lenzm-utils
Version: 0.11.3
Summary: Various utils including Flask projects
Home-page: https://github.com/mlenzen/lenzm_utils
Author: Michael Lenzen
Author-email: m.lenzen@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: setuptools
Requires-Dist: Flask (>=0.11)
Requires-Dist: SQLAlchemy
Requires-Dist: Flask-SQLAlchemy
Requires-Dist: alembic
Requires-Dist: click
Requires-Dist: collections-extended
Requires-Dist: openpyxl
Requires-Dist: pytz
Requires-Dist: chardet

README
######

.. image:: https://travis-ci.org/mlenzen/lenzm_utils.svg?branch=master
	:target: https://travis-ci.org/mlenzen/lenzm_utils
	:alt: Build Status


.. image:: https://coveralls.io/repos/mlenzen/lenzm_utils/badge.svg?branch=master
	:target: https://coveralls.io/r/mlenzen/lenzm_utils?branch=master
	:alt: Coverage


Overview
========

This package includes one module - ``lenzm_utils``.


Getting Started
===============

.. code:: python

	 >>> import lenzm_utils

Installation
============

``pip install git+https://github.com/mlenzen/lenzm_utils.git#egg=lenzm_utils``

Usage
=====
	``import lenzm_utils``

Features
========

* TODO

Running Tests
=============

Some tests require a postgres db to be set up with username/password/dbname all "test"

On Ubuntu:

.. code-block:: sh

	$ sudo -u postgres createuser -P test
	$ sudo -u postgres createdb -O test test
	$ sudo -u postgres psql test -c "create extension citext"


:Author: Michael Lenzen
:Copyright: 2018 Michael Lenzen
:License: MIT
:GitHub: https://github.com/mlenzen/lenzm_utils


