cmlenz@4: #!/usr/bin/env python cmlenz@5: # -*- coding: iso8859-1 -*- cmlenz@5: # cmlenz@5: # Copyright (C) 2005 Christopher Lenz cmlenz@5: # cmlenz@5: # Bitten is free software; you can redistribute it and/or cmlenz@5: # modify it under the terms of the GNU General Public License as cmlenz@5: # published by the Free Software Foundation; either version 2 of the cmlenz@5: # License, or (at your option) any later version. cmlenz@5: # cmlenz@5: # Trac is distributed in the hope that it will be useful, cmlenz@5: # but WITHOUT ANY WARRANTY; without even the implied warranty of cmlenz@5: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU cmlenz@5: # General Public License for more details. cmlenz@5: # cmlenz@5: # You should have received a copy of the GNU General Public License cmlenz@5: # along with this program; if not, write to the Free Software cmlenz@5: # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. cmlenz@5: # cmlenz@5: # Author: Christopher Lenz cmlenz@4: cmlenz@0: from distutils.core import setup, Command cmlenz@2: from bitten.distutils.testrunner import unittest cmlenz@0: cmlenz@0: setup(name='bitten', version='1.0', cmlenz@0: packages=['bitten', 'bitten.general', 'bitten.python'], cmlenz@3: author="Christopher Lenz", author_email="cmlenz@gmx.de", cmlenz@3: url="http://projects.edgewall.com/bitten/", cmlenz@2: cmdclass={'unittest': unittest})