"""Setup swf-analytics-aggregation project.""" from setuptools import find_packages from setuptools import setup setup( name='swf-analytics-aggregation', version='0.1', description='Aggregation SWF Workflows', packages=find_packages(), # managed by pip requirements files install_requires=[ 'garcon', 'psycopg2', 's3transfer==0.1.10'], package_data={ # include all the .sql files 'analytics_aggregation.flows.spotify_sos': ['queries/*.sql'], 'analytics_aggregation.flows.apple_music_sos': ['queries/*.sql'], 'analytics_aggregation.flows.apple_music_demographics': ['queries/*.sql'], 'analytics_aggregation.flows.spotify_demographics': ['queries/*.sql'], 'analytics_aggregation.flows.amazon_unlimited_sos': ['queries/*.sql'], }, entry_points=dict( console_scripts=['garcon = analytics_aggregation.cli:garcon']), tests_require=['pytest', 'pytest-cov'], url='https://github.com/theorchard/swf-analytics-aggregation', )