annotate setup.py @ 163:634be6cbb808

Flip the switch: Bitten is now BSD-licensed.
author cmlenz
date Sat, 27 Aug 2005 07:58:12 +0000
parents dd745d6b8c83
children b1f6b666aed6
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*']),
99
efc1eed69ba8 Make Bitten deployable in Trac as a [http://peak.telecommunity.com/DevCenter/PythonEggs Python egg].
cmlenz
parents: 78
diff changeset
22 package_data={'bitten.trac_ext': ['templates/*.cs', 'htdocs/*.*']},
104
4bee62474361 The `.bat` files don't work when installed using setuptools, so get rid of them.
cmlenz
parents: 99
diff changeset
23 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
24 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
25 cmdclass={'unittest': unittest})
Copyright (C) 2012-2017 Edgewall Software