"""Setup.""" from setuptools import find_packages from setuptools import setup setup( name='accounting-run-preprocessor', version='0.1', description='', packages=find_packages(), install_requires=[ 'boto', 'hiredis', 'mysqlclient', 'redis', 'snowflake-connector-python' ], entry_points=dict( console_scripts=[ 'cache = ', 'fx_rates = ', 'checkspaid = ', 'bvcs = ', 'manual_adjustments = ' ] ), tests_require=[ 'pytest', 'pytest-cov' ], url='https://github.com/theorchard/accounting-run-standalone' )