Metadata-Version: 1.1
Name: seek-well
Version: 0.2.0
Summary: Hierarchical ordering "SQL" scripts for correct execution.
Home-page: https://github.com/lycantropos/seek-well/
Author: Azat Ibrakov
Author-email: azatibrakov@gmail.com
License: UNKNOWN
Download-URL: https://github.com/lycantropos/seek-well/archive/master.zip
Description-Content-Type: UNKNOWN
Description: ===========
        seek-well
        ===========
        
        .. image:: https://travis-ci.org/lycantropos/seek-well.svg?branch=master
          :target:  https://travis-ci.org/lycantropos/seek-well
        
        .. image:: https://badge.fury.io/py/seek-well.svg
          :target: https://badge.fury.io/py/seek-well
        
        In what follows ``python3`` is an alias for ``python3.6``
        or any later version.
        
        Installation
        ------------
        Install the latest ``pip`` & ``setuptools`` packages versions
        
        .. code-block:: bash
        
          python3 -m pip install --upgrade pip setuptools
        
        Release
        ~~~~~~~
        Download and install the latest stable version from ``PyPI`` repository
        
        .. code-block:: bash
        
          python3 -m pip install --upgrade seek-well
        
        Developer
        ~~~~~~~~~
        Download and install the latest version from ``GitHub`` repository
        
        .. code-block:: bash
        
          git clone https://github.com/lycantropos/seek-well.git
          cd seek-well
          python3 setup.py install
        
        Bumping version
        ---------------
        Install `bumpversion <https://github.com/peritus/bumpversion#installation>`__.
        
        Choose which version number category to bump following `semver specification <http://semver.org/>`__.
        
        Test bumping version
        
        .. code-block:: bash
        
          bumpversion --dry-run --verbose $VERSION
        
        where ``$VERSION`` is the target version number category name,
        possible values are ``patch``/``minor``/``major``.
        
        Bump version
        
        .. code-block:: bash
        
          bumpversion --verbose $VERSION
        
        **Note**: to avoid inconsistency between branches and pull requests,
        bumping version should be merged into ``master`` branch as separate pull request.
        
        Running tests
        -------------
        Plain
        
        .. code-block:: bash
        
          python3 setup.py test
        
        Inside ``Docker`` container
        
        .. code-block:: bash
        
          docker-compose up
        
        Inside ``Docker`` container with remote debugger
        
        .. code-block:: bash
        
          ./set-dockerhost.sh docker-compose up
        
        Bash script (e.g. can be used in ``Git`` hooks)
        
        .. code-block:: bash
        
          ./run-tests.sh
        
Keywords: sql
Platform: UNKNOWN
