Commit 1d8a0006 by willmcgugan

setup.py tweaks

parent be42d2e9
...@@ -43,7 +43,7 @@ Mounts a file system on a system path""" ...@@ -43,7 +43,7 @@ Mounts a file system on a system path"""
try: try:
fs_url = args[0] fs_url = args[0]
except IndexError: except IndexError:
self.error('FS required\n') self.error('FS path required\n')
return 1 return 1
try: try:
......
...@@ -25,19 +25,34 @@ classifiers = [ ...@@ -25,19 +25,34 @@ classifiers = [
'Topic :: System :: Filesystems', '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', setup(name='fs',
version=VERSION, version=VERSION,
description="Filesystem abstraction", description="Filesystem abstraction",
long_description="Creates a common interface to filesystems", long_description=long_desc,
license = "BSD", license = "BSD",
author="Will McGugan", author="Will McGugan",
author_email="will@willmcgugan.com", author_email="will@willmcgugan.com",
url="http://code.google.com/p/pyfilesystem/", url="http://code.google.com/p/pyfilesystem/",
download_url="http://code.google.com/p/pyfilesystem/downloads/list", download_url="http://code.google.com/p/pyfilesystem/downloads/list",
platforms = ['any'], platforms = ['any'],
packages=['fs','fs.expose','fs.expose.fuse','fs.tests','fs.wrapfs', packages=['fs',
'fs.osfs','fs.contrib','fs.contrib.bigfs','fs.contrib.davfs', 'fs.expose',
'fs.expose.dokan', 'fs.commands'], '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], scripts=['fs/commands/%s.py' % command for command in COMMANDS],
classifiers=classifiers, classifiers=classifiers,
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment