view setup.py @ 19:608df6b3de80

interpolate all the things
author jhammel
date Fri, 26 Oct 2012 15:27:41 +0000
parents b3fd8f98df32
children
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='dogdish',
      version=version,
      description="dogfooding for b2g upderver",
      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://update.boot2gecko.org/nightly/update.xml',
      license="",
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      zip_safe=False,
      install_requires=[
          # -*- Extra requirements: -*-
         'WebOb'
      ],
      entry_points="""
      """,
      )