Metadata-Version: 2.0
Name: FortiGateConverter
Version: 0.1.0
Summary: Help to migrate configuration between FGTs.
Home-page: https://github.com/zhangdunxing/FortiGateConverter
Author: Dunxing Zhang
Author-email: dunxingzhang@fortinet.com
License: UNKNOWN
Keywords: FortiGateConverter
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

=============================
FortiGateConverter
=============================

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

.. image:: https://travis-ci.org/zhangdunxing/FortiGateConverter.svg?branch=master
    :target: https://travis-ci.org/zhangdunxing/FortiGateConverter

.. image:: https://codecov.io/gh/zhangdunxing/FortiGateConverter/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/zhangdunxing/FortiGateConverter

Help to migrate configuration between FGTs.

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

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

Quickstart
----------

Install FortiGateConverter::

    pip install FortiGateConverter

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'fortigateconverter.apps.FortigateconverterConfig',
        ...
    )

Add FortiGateConverter's URL patterns:

.. code-block:: python

    from fortigateconverter import urls as fortigateconverter_urls


    urlpatterns = [
        ...
        url(r'^', include(fortigateconverter_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 (2017-04-20)
++++++++++++++++++

* First release on PyPI.


