Metadata-Version: 1.1
Name: t3-core
Version: 0.3.0
Summary: Boilerplate to quickly setup a Django Rest Framework Microservice for T3
Home-page: https://github.com/nwcell/t3_django_microservice
Author: Travis Krause
Author-email: travis.krause@t-3.com
License: UNKNOWN
Description: 
        T3 Python Core Library
        ======================
        
        
        .. image:: https://gitlab.t-3.com/sunoco/t3-python-core/badges/master/pipeline.svg
           :target: https://gitlab.t-3.com/sunoco/t3-python-core/commits/master
           :alt: pipeline status
        
        
        .. image:: https://gitlab.t-3.com/sunoco/t3-python-core/badges/master/coverage.svg
           :target: https://gitlab.t-3.com/sunoco/t3-python-core/commits/master
           :alt: coverage report
        
        
        .. image:: https://badge.fury.io/py/t3-core.svg
           :target: https://badge.fury.io/py/t3-core
           :alt: PyPI version
        
        
        Install
        -------
        
        Setup Virtualenv (optional)
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^
        
        .. code-block:: sh
        
           python -m venv .venv
           source .venv/bin/activate
        
           # There is a bug in pip 9.x  go ahead and upgrade to make sure that you're pip 10.x
           pip install --upgrade pip
        
        Install
        ^^^^^^^
        
        .. code-block:: sh
        
           # Install from pypi
           pip install t3-core
        
           # Install in the `src` dir of your python environment
           pip install -e git+ssh://git@gitlab.t-3.com/sunoco/t3-python-core.git
        
           # Choose where the clone lives
           git clone ssh://git@gitlab.t-3.com/sunoco/t3-python-core.git
           pip install -e ./t3-python-core
        
        Testing & Linting
        -----------------
        
        Test & Coverage Report
        ^^^^^^^^^^^^^^^^^^^^^^
        
        .. code-block:: sh
        
           pytest
        
        Lint
        ^^^^
        
        .. code-block:: sh
        
           pylama
        
Keywords: t3 t3-python-core
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
