Mercurial > hg > PaInt
view tests/dummy/setup.py @ 56:042a1b2a3e8a
start flushing out tests
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Wed, 23 Jan 2013 16:01:29 -0800 |
parents | 72e521851f1a |
children |
line wrap: on
line source
""" setup packaging script for dummy """ import os version = "0.1" dependencies = [] kw = {} from setuptools import setup kw['entry_points'] = """ """ kw['install_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='dummy', version=version, description="a dummy 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://example.com/', license='', packages=['dummy'], include_package_data=True, zip_safe=False, **kw )