view setup.py @ 0:8d31e36f084e

initial stubbing
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 29 Feb 2012 13:09:11 -0800
parents
children 6b4b9a9b37c6
line wrap: on
line source

"""
setup packaging script for FileServer
"""

import os

version = "0.0"
dependencies = ['MakeItSo', 'webob']

# allow use of setuptools/distribute or distutils
kw = {}
try:
    from setuptools import setup
    kw['entry_points'] = """
      [console_scripts]
      FileServer = FileServer.main:main
      FileServer-template = FileServer.template: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
      )