view setup.py @ 210:c550e31c06d2

Implement providing input data to processes executed via the `CommandLine` class. The `<sh:pipe>` recipe command should now be functional. Closes #34. Also, add unit tests for the `CommandLine` class.
author cmlenz
date Tue, 20 Sep 2005 12:02:38 +0000
parents 0781987c586a
children 25f84dd9f159
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']
    },
    entry_points = {
        'console_scripts': ['bitten-master = bitten.master:main',
                            'bitten-slave = bitten.slave:main'],
        'distutils.commands': ['unittest = bitten.util.testrunner:unittest'],
        'trac.plugins': ['bitten.main = bitten.trac_ext.main',
                         'bitten.web_ui = bitten.trac_ext.web_ui',
                         'bitten.summarizers = bitten.trac_ext.summarizers',
                         'bitten.charts = bitten.trac_ext.charts']
    },
    test_suite='bitten.tests.suite', zip_safe=True
)
Copyright (C) 2012-2017 Edgewall Software