from setuptools import setup setup(name='cdist', version='0.1', description='software build and distribution tool', url='http://carlh.net/cdist', author='Carl Hetherington', author_email='cth@carlh.net', license='GPL', packages=['cdist'], entry_points={'console_scripts': ['cdist=cdist.command_line:main'],}, test_suite='nose.collector', tests_require=['nose'], zip_safe=False)