Metadata-Version: 2.0
Name: pybatis
Version: 0.1.1
Summary: python for mybatis
Home-page: https://gitee.com/huichengip_chenxf/pybatis
Author: x-debug
Author-email: 512766594@qq.com
License: MIT
Keywords: pybatis
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: pyjsonmodels
Requires-Dist: pyquery

=============================
pybatis
=============================

.. image:: https://badge.fury.io/py/pybatis.svg
    :target: https://badge.fury.io/py/pybatis

.. image:: https://travis-ci.org/x-debug/pybatis.svg?branch=master
    :target: https://travis-ci.org/x-debug/pybatis

.. image:: https://codecov.io/gh/x-debug/pybatis/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/x-debug/pybatis

python for mybatis

Documentation
-------------

The full documentation is at https://pybatis.readthedocs.io.

Quickstart
----------

Install pybatis::

    pip install pybatis

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'pybatis.apps.PybatisConfig',
        ...
    )

Add pybatis's URL patterns:

.. code-block:: python

    from pybatis import urls as pybatis_urls


    urlpatterns = [
        ...
        url(r'^', include(pybatis_urls)),
        ...
    ]

Features
--------

* TODO

Running Tests
-------------

Does the code actually work?

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install tox
    (myenv) $ tox

Credits
-------

Tools used in rendering this package:

*  Cookiecutter_
*  `cookiecutter-djangopackage`_

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage




History
-------

0.1.0 (2018-03-08)
++++++++++++++++++

* First release on PyPI.


