view setup.py @ 185:2c24d9a950ed

Add a `--dry-run` option to the build slave. This will result in the slave being registered and executing builds, but without submitting the progress and results of the build back to the server. Useful for getting the configuration of new slaves right without polluting the database with invalid builds.
author cmlenz
date Wed, 31 Aug 2005 17:24:35 +0000
parents 5ab5418d56cc
children 0781987c586a
line wrap: on
line source
#!/usr/bin/env python
# -*- coding: iso8859-1 -*-
#
# Copyright (C) 2005 Christopher Lenz <cmlenz@gmx.de>
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at http://bitten.cmlenz.net/wiki/License.

from setuptools import setup, find_packages

from bitten import __version__ as VERSION
from bitten.util.testrunner import unittest

setup(name='bitten', version=VERSION, author='Christopher Lenz',
      author_email='cmlenz@gmx.de', url='http://bitten.cmlenz.net/',
      description='Framework for collecting software metrics via continuous '
                  'integration',
      license='BSD',
      packages=find_packages(exclude=['ez_setup', '*.tests*']),
      package_data={'bitten.trac_ext': ['htdocs/*.*',
                                        'htdocs/charts_library/*.swf',
                                        'templates/*.cs']},
      scripts=['scripts/bitten', 'scripts/bittend'],
      test_suite='bitten.tests.suite', zip_safe=True,
      cmdclass={'unittest': unittest})
Copyright (C) 2012-2017 Edgewall Software