Mercurial > hg > FileServer
view setup.py @ 20:1eb5e82605a5
* flush out README
* other minor fixes
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Wed, 29 Feb 2012 16:38:39 -0800 |
parents | 6b4b9a9b37c6 |
children | 2bb87686bcca |
line wrap: on
line source
""" setup packaging script for FileServer """ import os version = "0.2" dependencies = ['webob'] # allow use of setuptools/distribute or distutils kw = {} try: from setuptools import setup kw['entry_points'] = """ [console_scripts] FileServer = FileServer.web:main """ kw['install_requires'] = dependencies except ImportError: from distutils.core import setup kw['requires'] = dependencies try: here = os.path.dirname(os.path.abspath(__file__)) description = file(os.path.join(here, 'README.txt')).read() except IOError: description = '' setup(name='FileServer', version=version, description="a simple static fileserver and directory index server in python (WSGI app)", long_description=description, classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers author='Jeff Hammel', author_email='jhammel@mozilla.com', url='http://k0s.org/hg/FileServer', license='', packages=['fileserver'], include_package_data=True, zip_safe=False, **kw )