blob: ebe4f99755eb7a1d84c8f8001ea3194b390af39f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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)
|