view 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
line wrap: on
line source
#!/usr/bin/env python

from distutils.core import setup, Command
from bitten.distutils.testrunner import unittest

setup(name='bitten', version='1.0',
      packages=['bitten', 'bitten.general', 'bitten.python'],
      author="Christopher Lenz", author_email="cmlenz@gmx.de",
      url="http://projects.edgewall.com/bitten/",
      cmdclass={'unittest': unittest})
Copyright (C) 2012-2017 Edgewall Software