"""Setup swf-data-landing-zone project.""" from setuptools import find_packages from setuptools import setup setup( name='swf-data-landing-zone', version='0.1', description='', packages=find_packages(), entry_points=dict( console_scripts=['garcon = data_landing_zone.cli:garcon']), tests_require=['pytest', 'pytest-cov'], url='https://github.com/theorchard/swf-data-landing-zone', )