view setup.py @ 67:e8dabfd24c42

stub for a template to create new autobot factories; unfinished
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 11 Jan 2011 10:55:52 -0800
parents a32a7055f3e6
children 2de829d2c3f7
line wrap: on
line source

from setuptools import setup, find_packages
import sys, os

version = '0.0'

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,
      zip_safe=False,
      install_requires=[
          # -*- Extra requirements: -*-
        'buildbot',
        'buildbot-slave',
        'virtualenv'
      ],
      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
      """,
      )