Metadata-Version: 2.0
Name: router-tools
Version: 0.1.5
Summary: A simple tool for router maintain.
Home-page: https://github.com/renweibo/router_tools
Author: Ren Weibo
Author-email: renweibo@gmail.com
License: MIT License
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Provides-Extra: testing
Requires-Dist: pytest; extra == 'testing'

router\_tools
=============

|Latest PyPI version| |Latest Travis CI build status| |Documentation
Status|

A simple tools for router maintain.

Usage
=====

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

Requirements
------------

Development Guide
=================

Development env setup - bootstrap
---------------------------------

::

    virtualenv .env
    . .env/bin/activate
    pip install -U pip
    cat <<EOF > .env/pip.conf
    [list]
    format=columns
    EOF
    pip install -U virtualenvwrapper
    pip install -U pytest-cov
    pip install -U tox
    pip install -U Sphinx
    pip install -U recommonmark
    pip freeze > requirements.txt
    sphinx-quickstart

Development env setup - new machine
-----------------------------------

::

    . .env/bin/activate
    pip install -r requirements.txt --use-mirrors

Relase
------

::

    pandoc -o README.rst -i README.md
    pip freeze > requirements.txt

    . .env/bin/activate
    python setup.py develop
    py.test
    git commit -a -m "messages for update"

    rm docs_api/*.rst
    sphinx-apidoc -F -o docs_api router_tools
    make -C docs_api html; open docs_api/build/html/index.html

    bumpversion patch
    python setup.py sdist upload
    python setup.py bdist_wheel upload

    make -C docs html; open docs/build/html/index.html

Licence
=======

.. |Latest PyPI version| image:: https://img.shields.io/pypi/v/router_tools.svg
   :target: https://pypi.python.org/pypi/router_tools
.. |Latest Travis CI build status| image:: https://travis-ci.org/renweibo/router_tools.png
   :target: https://travis-ci.org/renweibo/router_tools
.. |Documentation Status| image:: https://readthedocs.org/projects/router-tools/badge/?version=latest
   :target: http://router-tools.readthedocs.io/en/latest/?badge=latest


