Metadata-Version: 2.1
Name: CTRL-Z
Version: 1.0.1
Summary: A Django backup and recovery tool
Home-page: https://bitbucket.org/isprojects/ctrl_z
Author: ISProjects B.V.
Author-email: support@isprojects.nl
License: UNKNOWN
Keywords: django,backup,recovery
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Provides-Extra: tests
Provides-Extra: coverage
Provides-Extra: pep8
Provides-Extra: release
Provides-Extra: docs
Requires-Dist: django
Requires-Dist: python-dateutil
Requires-Dist: pyyaml
Provides-Extra: coverage
Requires-Dist: pytest-cov; extra == 'coverage'
Provides-Extra: docs
Requires-Dist: sphinx; extra == 'docs'
Requires-Dist: sphinx-rtd-theme; extra == 'docs'
Provides-Extra: pep8
Requires-Dist: flake8; extra == 'pep8'
Provides-Extra: release
Requires-Dist: zest.releaser; extra == 'release'
Provides-Extra: tests
Requires-Dist: psycopg2-binary; extra == 'tests'
Requires-Dist: pytest; extra == 'tests'
Requires-Dist: pytest-django; extra == 'tests'
Requires-Dist: pytest-freezegun; extra == 'tests'
Requires-Dist: tox; extra == 'tests'
Requires-Dist: isort; extra == 'tests'

==========================================
CTRL-Z - A Django backup and recovery tool
==========================================

CTRL-Z (control-zee) is a backup and recovery tool for Django projects.

Its goals are to be operating system agnostic in creating and restoring backups,
while being flexible through a yaml configuration file.

|build-status| |requirements| |coverage| |docs|

|python-versions| |django-versions| |pypi-version|

.. note:: Warning: currently only PostgreSQL is supported

.. contents::

.. section-numbering::

Features
========

* Supports Linux, Windows, MacOS
* Django project inspection:

    * backs up configured databases using ``settings.DATABASES``
    * backs up file directories such as ``settings.MEDIA_ROOT`` (configurable)

* stdlib ``logging`` based reporting + e-mailing of backup/restore report
* YAML-based, minimal configuration
* Simple Python/CLI APIs for backup creation and restoration

Installation and usage
======================

See the `documentation`_.


.. |build-status| image:: https://travis-ci.org/isprojects/ctrl-z.svg?branch=develop
    :target: https://travis-ci.org/isprojects/ctrl-z
    :alt: Build status

.. |requirements| image:: https://requires.io/github/isprojects/ctrl-z/requirements.svg?branch=develop
    :target: https://requires.io/github/isprojects/ctrl-z/requirements/?branch=develop
    :alt: Requirements status

.. |coverage| image:: https://codecov.io/gh/isprojects/ctrl-z/branch/develop/graph/badge.svg
    :target: https://codecov.io/gh/isprojects/ctrl-z
    :alt: Coverage status

.. |python-versions| image:: https://img.shields.io/pypi/pyversions/ctrl-z.svg

.. |django-versions| image:: https://img.shields.io/pypi/djversions/ctrl-z.svg

.. |pypi-version| image:: https://img.shields.io/pypi/v/ctrl-z.svg
    :target: https://pypi.org/project/ctrl-z/

.. |docs| image:: https://readthedocs.org/projects/ctrl-z/badge/?version=latest
    :target: https://ctrl-z.readthedocs.io/en/latest/?badge=latest
    :alt: Documentation Status

.. _documentation: https://ctrl-z.readthedocs.io/en/latest/


