Metadata-Version: 1.1
Name: stac
Version: 1.0.1
Summary: Smarter Travel Artifactory Client
Home-page: https://github.com/smarter-travel-media/stac
Author: Smarter Travel
Author-email: UNKNOWN
License: MIT
Description: Stac - Smarter Travel Artifactory Client
        ========================================
        
        .. image:: https://travis-ci.org/smarter-travel-media/stac.svg?branch=master
            :target: https://travis-ci.org/smarter-travel-media/stac
        
        Stac is a tiny Artifactory client designed for getting the most recent version (or versions)
        of a project from an Artifactory server. The target use case is downloading project artifacts
        as part of a deploy process.
        
        Given a few pieces of information, it can generate URLs to the most recent version of an
        artifact to be downloaded as part of your deploy process. Currently, only Maven repository
        layouts (in Artifactory parlance) are supported.
        
        Installation
        ------------
        
        To install Stac, simply run:
        
        .. code-block:: bash
        
            $ pip install stac
        
        
        Dependencies
        ------------
        * `requests <https://github.com/kennethreitz/requests>`_  by Kenneth Reitz
        
        Usage
        -----
        
        Using Stac is easy!
        
        .. code-block:: python
        
            >>> from stac.api import new_maven_client
            >>> client = new_maven_client('https://www.example.com/artifactory', 'libs-release')
            >>> version = client.get_latest_version('com.example.services.authentication')
            >>> version
            '1.2.3'
            >>> url = client.get_version_url('com.example.services.authentication', 'jar', version)
            >>> url
            'https://www.example.com/artifactory/libs-release/com/example/services/authentication/1.2.3/authentication-1.2.3.jar'
        
        
        Documentation
        -------------
        
        The latest documentation is available at https://stac.readthedocs.org/en/latest/
        
        Source
        ------
        
        The source code is available at https://github.com/smarter-travel-media/stac
        
        Download
        --------
        
        Python packages are available at https://pypi.python.org/pypi/stac
        
        Changes
        -------
        
        The change log is available at https://stac.readthedocs.org/en/latest/changes.html
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: System :: Installation/Setup
Classifier: Topic :: System :: Software Distribution
