view setup.py @ 172:d7c8d4375374

More improvements to the `<python:trace>` code coverage report: * For files missing coverage, only take files into account that have a Python file name extension. * Previously, a `.pyc` file would have overwritten the coverage of a `.py` file, so it looked like the module had a coverage of 0 percent. * The line number of the `bitten.util.loc` module now starts at 0 to be consistent with the line numbering of files with coverage information.
author cmlenz
date Tue, 30 Aug 2005 10:28:24 +0000
parents 634be6cbb808
children b1f6b666aed6
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': ['templates/*.cs', 'htdocs/*.*']},
      scripts=['scripts/bitten', 'scripts/bittend'],
      test_suite='bitten.tests.suite', zip_safe=True,
      cmdclass={'unittest': unittest})
Copyright (C) 2012-2017 Edgewall Software