from setuptools import setup, find_packages setup( name='swf-feed-sender', version='0.1', description='Feed Sender', packages=find_packages(), install_requires=[ 'boto', 'garcon', 'pymysql', 'sqlalchemy'], package_data={ # include all the yaml files in the conf pkg 'feed_sender.conf': ['*.yml'], # include all the SQL files 'feed_sender.flows': ['*/queries/*.sql'], }, entry_points=dict(console_scripts=['garcon = feed_sender.cli:garcon']), tests_require=['pytest', 'pytest-cov'], url='https://github.com/theorchard/swf-feed-sender', )