view setup.py @ 69:25812a846d24

update to new location;
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 13 Dec 2012 11:06:13 -0800
parents 0f5c22c07146
children
line wrap: on
line source

"""
setup packaging script for talosnames
"""

import os

version = "0.0"
dependencies = ['webob', 'CommandParser', 'talos', 'buildbot', 'PyYAML', 'PasteScript']

try:
    import json
except ImportError:
    dependencies.append('simplejson')

# allow use of setuptools/distribute or distutils
kw = {}
try:
    from setuptools import setup
    kw['entry_points'] = """
      [console_scripts]
      talos-names = talosnames.main:main
      talos-names-web = talosnames.web:main
"""
    kw['install_requires'] = dependencies
    kw['dependency_links'] = ['http://hg.mozilla.org/build/talos/archive/tip.tar.gz#egg=talos']
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='MPL',
      packages=['talosnames'],
      include_package_data=True,
      zip_safe=False,
      **kw
      )