annotate setup.py @ 181:5ab5418d56cc

More changes following the renames in r187/r188.
author cmlenz
date Wed, 31 Aug 2005 01:49:59 +0000
parents b1f6b666aed6
children 0781987c586a
rev   line source
4
196009657e5e Simplify the recipe commands interface:
cmlenz
parents: 3
diff changeset
1 #!/usr/bin/env python
5
738a0ae251f6 Added GPL boilerplate.
cmlenz
parents: 4
diff changeset
2 # -*- coding: iso8859-1 -*-
738a0ae251f6 Added GPL boilerplate.
cmlenz
parents: 4
diff changeset
3 #
738a0ae251f6 Added GPL boilerplate.
cmlenz
parents: 4
diff changeset
4 # Copyright (C) 2005 Christopher Lenz <cmlenz@gmx.de>
163
634be6cbb808 Flip the switch: Bitten is now BSD-licensed.
cmlenz
parents: 160
diff changeset
5 # All rights reserved.
5
738a0ae251f6 Added GPL boilerplate.
cmlenz
parents: 4
diff changeset
6 #
163
634be6cbb808 Flip the switch: Bitten is now BSD-licensed.
cmlenz
parents: 160
diff changeset
7 # This software is licensed as described in the file COPYING, which
634be6cbb808 Flip the switch: Bitten is now BSD-licensed.
cmlenz
parents: 160
diff changeset
8 # you should have received as part of this distribution. The terms
634be6cbb808 Flip the switch: Bitten is now BSD-licensed.
cmlenz
parents: 160
diff changeset
9 # are also available at http://bitten.cmlenz.net/wiki/License.
4
196009657e5e Simplify the recipe commands interface:
cmlenz
parents: 3
diff changeset
10
99
efc1eed69ba8 Make Bitten deployable in Trac as a [http://peak.telecommunity.com/DevCenter/PythonEggs Python egg].
cmlenz
parents: 78
diff changeset
11 from setuptools import setup, find_packages
6
9b57159428b0 Fix package list in {{{setup.py}}}.
cmlenz
parents: 5
diff changeset
12
19
9db5f8eddb0d Proper {{{optparse}}}-based command-line interface for master and slave.
cmlenz
parents: 17
diff changeset
13 from bitten import __version__ as VERSION
22
e67713b7936f Moved test runner into {{{bitten.util}}}} package.
cmlenz
parents: 21
diff changeset
14 from bitten.util.testrunner import unittest
0
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
15
136
f092e686e06b * Exclude `ez_setup.py` from the distribution.
cmlenz
parents: 104
diff changeset
16 setup(name='bitten', version=VERSION, author='Christopher Lenz',
f092e686e06b * Exclude `ez_setup.py` from the distribution.
cmlenz
parents: 104
diff changeset
17 author_email='cmlenz@gmx.de', url='http://bitten.cmlenz.net/',
f092e686e06b * Exclude `ez_setup.py` from the distribution.
cmlenz
parents: 104
diff changeset
18 description='Framework for collecting software metrics via continuous '
f092e686e06b * Exclude `ez_setup.py` from the distribution.
cmlenz
parents: 104
diff changeset
19 'integration',
163
634be6cbb808 Flip the switch: Bitten is now BSD-licensed.
cmlenz
parents: 160
diff changeset
20 license='BSD',
136
f092e686e06b * Exclude `ez_setup.py` from the distribution.
cmlenz
parents: 104
diff changeset
21 packages=find_packages(exclude=['ez_setup', '*.tests*']),
181
5ab5418d56cc More changes following the renames in r187/r188.
cmlenz
parents: 179
diff changeset
22 package_data={'bitten.trac_ext': ['htdocs/*.*',
5ab5418d56cc More changes following the renames in r187/r188.
cmlenz
parents: 179
diff changeset
23 'htdocs/charts_library/*.swf',
179
b1f6b666aed6 Add the XML/SWF charts library to the package data.
cmlenz
parents: 163
diff changeset
24 'templates/*.cs']},
104
4bee62474361 The `.bat` files don't work when installed using setuptools, so get rid of them.
cmlenz
parents: 99
diff changeset
25 scripts=['scripts/bitten', 'scripts/bittend'],
4bee62474361 The `.bat` files don't work when installed using setuptools, so get rid of them.
cmlenz
parents: 99
diff changeset
26 test_suite='bitten.tests.suite', zip_safe=True,
99
efc1eed69ba8 Make Bitten deployable in Trac as a [http://peak.telecommunity.com/DevCenter/PythonEggs Python egg].
cmlenz
parents: 78
diff changeset
27 cmdclass={'unittest': unittest})
Copyright (C) 2012-2017 Edgewall Software