Mercurial > hg > autobot
comparison setup.py @ 0:8e14b6322cc7
initial stub for ateam buildbot
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Wed, 22 Dec 2010 11:15:45 -0800 |
parents | |
children | d7c4e9d6d9dd |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:8e14b6322cc7 |
---|---|
1 from setuptools import setup, find_packages | |
2 import sys, os | |
3 | |
4 version = '0.0' | |
5 | |
6 setup(name='autobot', | |
7 version=version, | |
8 description="buildbot incarnation for Mozilla AutoTools team", | |
9 long_description="""\ | |
10 """, | |
11 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | |
12 keywords='buildbot automation', | |
13 author='Jeff Hammel', | |
14 author_email='jhammel@mozilla.com', | |
15 url='https://wiki.mozilla.org/Auto-tools', | |
16 license='MPL', | |
17 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
18 include_package_data=True, | |
19 zip_safe=False, | |
20 install_requires=[ | |
21 # -*- Extra requirements: -*- | |
22 'buildbot', | |
23 'buildbot-slave', | |
24 'virtualenv' | |
25 ], | |
26 entry_points=""" | |
27 # -*- Entry points: -*- | |
28 """, | |
29 ) |