view tests/dummy/setup.py @ 78:ab0620d3755b

docstring
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 28 Jan 2013 18:45:52 -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
      )