comparison 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
comparison
equal deleted inserted replaced
162:8d071396dc1f 163:634be6cbb808
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # -*- coding: iso8859-1 -*- 2 # -*- coding: iso8859-1 -*-
3 # 3 #
4 # Copyright (C) 2005 Christopher Lenz <cmlenz@gmx.de> 4 # Copyright (C) 2005 Christopher Lenz <cmlenz@gmx.de>
5 # All rights reserved.
5 # 6 #
6 # Bitten is free software; you can redistribute it and/or 7 # This software is licensed as described in the file COPYING, which
7 # modify it under the terms of the GNU General Public License as 8 # you should have received as part of this distribution. The terms
8 # published by the Free Software Foundation; either version 2 of the 9 # are also available at http://bitten.cmlenz.net/wiki/License.
9 # License, or (at your option) any later version.
10 #
11 # Trac is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 #
20 # Author: Christopher Lenz <cmlenz@gmx.de>
21 10
22 from setuptools import setup, find_packages 11 from setuptools import setup, find_packages
23 12
24 from bitten import __version__ as VERSION 13 from bitten import __version__ as VERSION
25 from bitten.util.testrunner import unittest 14 from bitten.util.testrunner import unittest
26 15
27 setup(name='bitten', version=VERSION, author='Christopher Lenz', 16 setup(name='bitten', version=VERSION, author='Christopher Lenz',
28 author_email='cmlenz@gmx.de', url='http://bitten.cmlenz.net/', 17 author_email='cmlenz@gmx.de', url='http://bitten.cmlenz.net/',
29 description='Framework for collecting software metrics via continuous ' 18 description='Framework for collecting software metrics via continuous '
30 'integration', 19 'integration',
20 license='BSD',
31 packages=find_packages(exclude=['ez_setup', '*.tests*']), 21 packages=find_packages(exclude=['ez_setup', '*.tests*']),
32 package_data={'bitten.trac_ext': ['templates/*.cs', 'htdocs/*.*']}, 22 package_data={'bitten.trac_ext': ['templates/*.cs', 'htdocs/*.*']},
33 scripts=['scripts/bitten', 'scripts/bittend'], 23 scripts=['scripts/bitten', 'scripts/bittend'],
34 test_suite='bitten.tests.suite', zip_safe=True, 24 test_suite='bitten.tests.suite', zip_safe=True,
35 cmdclass={'unittest': unittest}) 25 cmdclass={'unittest': unittest})
Copyright (C) 2012-2017 Edgewall Software