Skip to main content

Setuptools/distribute plugin for uploading to webdav servers

Project description

setuptools_webdav is a Setuptools/distribute plugin for uploading to webdav servers

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

setuptools_webdav-0.0.1.tar.gz (2.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page