Metadata-Version: 2.1
Name: Microngo
Version: 0.1.0
Summary: Small and Lightweight Toolkit for MongoDB
Home-page: https://microngo.emsuryadi.com/
Author: Em Suryadi
Author-email: me@emsuryadi.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Database
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
Requires-Dist: pymongo (>=3.7.0)

# Microngo

[![Documentation Status](https://readthedocs.org/projects/microngo/badge/?version=latest)](https://microngo.readthedocs.io/en/latest/?badge=latest)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/emsuryadi/Microngo/blob/master/LICENSE)
[![Python Version Support](https://img.shields.io/badge/python-3.x-blue.svg)](https://www.python.org/)

Microngo is small, fast, and lightweight MongoDB toolkit for python.

### Install

Install using PIP:

	pip install Microngo

or install from source:

	python setup.py install

### Documentation

The documentation can be found here [https://microngo.readthedocs.io/en/latest/](https://microngo.readthedocs.io/en/latest/ "Microngo Documentation")

### Testing

Install requirements and package:

	pip install -r requirements-test.txt
	python setup.py install

Test:

	nosetests -v --with-coverage --cover-package=microngo test.py

