Metadata-Version: 1.1
Name: artifactory-lib
Version: 0.0.6
Summary: Python library for interacting with Artifactory API
Home-page: https://github.com/gugahoi/artifactory_python
Author: Gustavo Hoirisch
Author-email: gugahoi@gmail.com
License: MIT
Description: artifactory\_python `|Build Status| <https://travis-ci.org/gugahoi/artifactory_python>`_
        ========================================================================================
        
        Python library to interact with Artifactory's API
        
        Installation
        ============
        
        ::
        
            pip install artifactory-lib
        
        Usage
        =====
        
        ::
        
            from Artifactory import Artifactory
        
            artifactory = Artifactory('user', '1234')
        
            # create a new user
            artifactory.create_user('tim')
        
            # get list of users from artifactory
            users = artifactory.get_users()
            print(users)
        
            # get details for a specific user
            tim = artifactory.get_user('tim')
        
        .. |Build
        Status| image:: https://travis-ci.org/gugahoi/artifactory_python.svg?branch=master
        
Keywords: artifactory management library
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
