from setuptools import setup, find_packages setup( name='snowflake-etl', version='0.1', description='snowflake feeder', packages=find_packages(), # managed by pip requirements files install_requires=[], package_data={ # include all the yaml files in the conf pkg 'snowflake_etl.conf': ['*.yml'], }, entry_points=dict(console_scripts=['garcon = snowflake_etl.cli:garcon']), tests_require=['pytest', 'pytest-cov'], url='https://github.com/theorchard/snowflake-etl', )