Mercurial > mozilla > hg > dogfood
view setup.py @ 20:71c36a7842d1
Use mtime to determine most recent update; don't cache updates since timestamps can change.
author | Jonathan Griffin <jgriffin@mozilla.com> |
---|---|
date | Mon, 12 Nov 2012 23:27:09 +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=""" """, )