view setup.py @ 7:68d2384b0a52

switch to command parser
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 10 Jul 2012 14:24:25 -0700
parents 82aad57c7d1d
children b7b59561be5e
line wrap: on
line source

"""
setup packaging script for talosnames
"""

import os

version = "0.0"
dependencies = ['webob', 'CommandParser']

# allow use of setuptools/distribute or distutils
kw = {}
try:
    from setuptools import setup
    kw['entry_points'] = """
      [console_scripts]
      talos-names = talosnames.main:main
"""
    kw['install_requires'] = dependencies
except ImportError:
    from distutils.core import setup
    kw['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='talosnames',
      version=version,
      description="correlate names of talos",
      long_description=description,
      classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
      author='Jeff Hammel',
      author_email='jhammel@mozilla.com',
      url='',
      license='',
      packages=['talosnames'],
      include_package_data=True,
      zip_safe=False,
      **kw
      )