view setup.py @ 67:cf03c3f2f98e

this one fails too; something is rotten in the state of virtualenv
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 01 Mar 2012 19:40:10 -0800
parents f8ff95180d04
children 8fa30276b3e0
line wrap: on
line source

from setuptools import setup, find_packages

try:
    description = file('README.txt').read()
except IOError:
    description = ''

version = "0.0"

setup(name='simpypi',
      version=version,
      description="Simple pypi package",
      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/mozilla/hg/simpypi',
      license="MPL",
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      zip_safe=False,
      install_requires=[
          # -*- Extra requirements: -*-
         'WebOb',
         'FileServer'
      ],
      entry_points="""
      # -*- Entry points: -*-
      """,
      )