Metadata-Version: 1.1
Name: setuptools_webdav
Version: 0.0.1
Summary: Setuptools/distribute plugin for uploading to webdav servers
Home-page: https://bitbucket.org/mneagul/setuptools-webdav
Author: Marian Neagul
Author-email: marian@ieat.ro
License: APL
Description: setuptools_webdav is a Setuptools/distribute plugin for uploading to webdav servers
        
        .. contents::
        
        Overview
        ========
        This plugins allows the upload of python packages to webdav enabled servers.
        
        The main goal of the plugin was to provide the ability to upload python packages to Maven2 repository's (Eg. Artifactory).
        
        
        QuickStart
        ==========
        
        In order to use this plugin you need to add **setuptools_webdav** to the **setup_requires** command in your setup.py. This will instruct setuptools to download and use this plugin.
        
        The **setuptools_webdav** plugin provides the **webdav_upload** command.
        
        The webdav server that will be used for the upload, and the corresponding credentials, can be configured in your **.pypirc** in the.
        
        Example setup.py
        ----------------
         ::
        
        	from setuptools import setup, find_packages
        	setup(
        	name="DummyProject",
        	version="3.1.4",
        	packages=find_packages(),
        	setup_requires=["setuptools_webdav"],
        	)
        
        Example .pypirc
        ---------------
         ::
        
        	[webdav]
        	repository = http://example.com/pypi # mandatory
        	username = # Optional
        	password = # Optional
        
        Example invokation
        ------------------
        
         $ python setup.py sdist bdist webdav_upload
        
        ToDO
        ----
         * Fix Python_WebDAV_Library logging
         * Add support for gnome-keyring and kwallet.
        
Keywords: setuptools
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Setuptools Plugin
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: Apache Software License
