Mercurial > hg > autobot
view setup.py @ 258:8ed63380052e
use test bot and dont try to connect to irc when testing
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Wed, 28 Dec 2011 16:44:07 -0800 |
parents | 5473f1261547 |
children | 13107cdc1e33 |
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' ], 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 """, )