Split with some tests.
[cdist.git] / setup.py
1 from setuptools import setup
2
3 setup(name='cdist',
4       version='0.1',
5       description='software build and distribution tool',
6       url='http://carlh.net/cdist',
7       author='Carl Hetherington',
8       author_email='cth@carlh.net',
9       license='GPL',
10       packages=['cdist'],
11       entry_points={'console_scripts': ['cdist=cdist.command_line:main'],},
12       test_suite='nose.collector',
13       tests_require=['nose'],
14       zip_safe=False)