summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2010-08-02 00:18:49 +0000
committerrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2010-08-02 00:18:49 +0000
commit2dca8cf118df523515ac7a5595785dfcc9830b2a (patch)
tree7a2ce3d0a8de6e1af53ed80083bbbb665b09d551
parent80cb21351a7ad41a2a3a892bfd95896a6b68a3a2 (diff)
downloadpyfilesystem-2dca8cf118df523515ac7a5595785dfcc9830b2a.tar.gz
include "contrib" filesystems in setup.py
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@387 67cdc799-7952-0410-af00-57a81ceafa0f
-rw-r--r--fs/contrib/davfs/__init__.py4
-rw-r--r--setup.py2
2 files changed, 5 insertions, 1 deletions
diff --git a/fs/contrib/davfs/__init__.py b/fs/contrib/davfs/__init__.py
index 7d8fd77..622e32d 100644
--- a/fs/contrib/davfs/__init__.py
+++ b/fs/contrib/davfs/__init__.py
@@ -7,6 +7,10 @@
This module provides a relatively-complete WebDAV Level 1 client that exposes
a WebDAV server as an FS object. Locks are not currently supported.
+Requires the dexml module:
+
+ http://pypi.python.org/pypi/dexml/
+
"""
import os
diff --git a/setup.py b/setup.py
index fc94e73..73eb65c 100644
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,7 @@ setup(name='fs',
download_url="http://code.google.com/p/pyfilesystem/downloads/list",
platforms = ['any'],
packages=['fs','fs.expose','fs.expose.fuse','fs.tests','fs.wrapfs',
- 'fs.osfs'],
+ 'fs.osfs','fs.contrib','fs.contrib.bigfs','fs.contrib.davfs'],
classifiers=classifiers,
)