Metadata-Version: 2.0
Name: MakePath
Version: 1.0.2
Summary: A small library which aims to facilitate paths building from various locations
Home-page: UNKNOWN
Author: Olivier Kozak
Author-email: olivier.kozak@gmail.com
License: GNU LGPL v3
Platform: UNKNOWN

MakePath
========

MakePath is a small library which aims to facilitate paths building from various locations.

MakePath is released under the `LGPL v3 license <https://www.gnu.org/licenses/lgpl-3.0.en.html>`_.

Installation
------------

Here is how to install MakePath from PyPI :

.. code-block:: bash

    pip install makepath

How to use it
-------------

Here is how to make a path from root :

.. code-block:: python

    >>> import makepath
    >>> makepath.from_root("usr", "local", "bin")
    '/usr/local/bin'

You can of course make paths from other locations. See the `project's documentation`_ for more information.

.. _`project's documentation`: http://makepath.okozak.ovh/


