view setup.py @ 277:268349e6c941

remove devicemanager project; this now lives in mozbase
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 31 Jul 2012 14:45:04 -0700
parents 13107cdc1e33
children b6d0ce3cf430
line wrap: on
line source

import os, sys
from setuptools import setup, find_packages

version = '0.1'

setup(name='autobot',
      version=version,
      description="buildbot incarnation for Mozilla AutoTools team",
      long_description="""\
""",
      classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
      keywords='buildbot automation',
      author='Jeff Hammel',
      author_email='jhammel@mozilla.com',
      url='https://wiki.mozilla.org/Auto-tools',
      license='MPL',
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      package_data={'': ['template/master/*',
                         'template/slave/*',
                         'template/*.*']},
      zip_safe=False,
      install_requires=[
          # -*- Extra requirements: -*-
          'buildbot>=0.8.5',
          'buildbot-slave>=0.8.5',
          'virtualenv',
          'MakeItSo',
          'GetLatestTinderbox',
          'mozinfo'
      ],
      entry_points="""
      # -*- Entry points: -*-
      [console_scripts]
      create-autobot = autobot.template:create_autobot
      create-autobot-master = autobot.template:create_master
      create-autobot-slave = autobot.template:create_slave
      create-autobot-project = autobot.template:create_project
      """,
      )