Include unit testing in setuptools

darcs-hash:20070507151920-86b55-d04acb9709ef754148422e3d7b624415d112375e.gz
This commit is contained in:
David Rousselie
2007-05-07 17:19:20 +02:00
parent ada4b56178
commit 4cff9c3b75
2 changed files with 21 additions and 17 deletions

View File

@@ -20,7 +20,7 @@
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##
from distutils.core import setup
from setuptools import setup
setup(name = 'jmc', \
version = '0.3', \
@@ -29,4 +29,6 @@ setup(name = 'jmc', \
author_email = 'dax@happycoders.org', \
url = 'http://people.happycoders.org/dax/projects/jmc', \
package_dir = {'': 'src'}, \
packages = ['jmc', 'jmc.jabber', 'jmc.model'])
packages = ['jmc', 'jmc.jabber', 'jmc.model'], \
scripts = ['src/jmc.py'], \
test_suite = 'run_tests.test_suite')