annotate setup.py @ 4:196009657e5e

Simplify the recipe commands interface: * The implementation of a command is now located using a pseudo-protocol for namespace URIs. * Commands are simply module-level functions instead of components. * Remove dependency of the recipe/slave code on the Trac component architecture.
author cmlenz
date Mon, 06 Jun 2005 15:54:29 +0000
parents 9ac0ee86ec7c
children 738a0ae251f6
rev   line source
4
196009657e5e Simplify the recipe commands interface:
cmlenz
parents: 3
diff changeset
1 #!/usr/bin/env python
196009657e5e Simplify the recipe commands interface:
cmlenz
parents: 3
diff changeset
2
0
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
3 from distutils.core import setup, Command
2
3ba3fb6f0054 Generate coverage data in the distutils {{{unittest}}} command.
cmlenz
parents: 1
diff changeset
4 from bitten.distutils.testrunner import unittest
0
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
5
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
6 setup(name='bitten', version='1.0',
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
7 packages=['bitten', 'bitten.general', 'bitten.python'],
3
9ac0ee86ec7c Some cleanup to the recipe commands and reporters.
cmlenz
parents: 2
diff changeset
8 author="Christopher Lenz", author_email="cmlenz@gmx.de",
9ac0ee86ec7c Some cleanup to the recipe commands and reporters.
cmlenz
parents: 2
diff changeset
9 url="http://projects.edgewall.com/bitten/",
2
3ba3fb6f0054 Generate coverage data in the distutils {{{unittest}}} command.
cmlenz
parents: 1
diff changeset
10 cmdclass={'unittest': unittest})
Copyright (C) 2012-2017 Edgewall Software