# HG changeset patch # User cmlenz # Date 1124098381 0 # Node ID f092e686e06bec9481798fa2fa620744cff5dc92 # Parent d2b833187429945ca378e07d71e28cfbcd335960 * Exclude `ez_setup.py` from the distribution. * Add project description. * Add SVN revision to file name of distribution archives. diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -28,9 +28,11 @@ 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/", - packages=find_packages(exclude=["*.tests*"]), +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', + 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,