view tests/dummy/setup.py @ 55:72e521851f1a

add a dummy package for testing
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 23 Jan 2013 15:35:49 -0800
parents
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
      )