From 79e1acd85ac89cd803d9855ae7aee165f0418d57 Mon Sep 17 00:00:00 2001 From: willmcgugan Date: Wed, 22 Dec 2010 21:41:17 +0000 Subject: setup.py tweaks git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@569 67cdc799-7952-0410-af00-57a81ceafa0f --- setup.py | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 08c4cef..2c4ea90 100644 --- a/setup.py +++ b/setup.py @@ -25,19 +25,34 @@ classifiers = [ 'Topic :: System :: Filesystems', ] +long_desc = """Pyfilesystem is a module that provides a simplified common interface to many types of filesystem. Filesystems exposed via Pyfilesystem can also be served over the network, or 'mounted' on the native filesystem. + +Even if you only need to work with file and directories on the local hard-drive, Pyfilesystem can simplify your code and make it more robust -- with the added advantage that you can change where the files are located by changing a single line of code. +""" + setup(name='fs', version=VERSION, description="Filesystem abstraction", - long_description="Creates a common interface to filesystems", + long_description=long_desc, license = "BSD", author="Will McGugan", author_email="will@willmcgugan.com", url="http://code.google.com/p/pyfilesystem/", 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.contrib','fs.contrib.bigfs','fs.contrib.davfs', - 'fs.expose.dokan', 'fs.commands'], + packages=['fs', + 'fs.expose', + 'fs.expose.dokan', + 'fs.expose.fuse', + 'fs.expose.wsgi', + 'fs.tests', + 'fs.wrapfs', + 'fs.osfs', + 'fs.contrib', + 'fs.contrib.bigfs', + 'fs.contrib.davfs', + 'fs.contrib.tahoefs', + 'fs.commands'], scripts=['fs/commands/%s.py' % command for command in COMMANDS], classifiers=classifiers, ) -- cgit v1.2.1