from setuptools import setup, find_packages setup( name='processing-accounting', version='0.1', description='Accounting Processing Workflows', packages=find_packages(), install_requires=[ 'boto', 'garcon', 'sqlalchemy'], package_data={ # include all the yaml files in the conf pkg 'processing_accounting.conf': ['*.yml'] }, include_package_data=True, entry_points=dict( console_scripts=[ 'garcon = processing_accounting.cli:garcon', 'accounting_statement_export = ' 'processing_accounting.bin.monthly_statement_generation:run', 'copy_avro_for_qa = ' 'processing_accounting.bin.copy_avro_files_for_qa:run', 'rerun_failed_custom_export = ' 'processing_accounting.bin.rerun_failed_custom_export:entry_point' ]), tests_require=['pytest', 'pytest-cov'], url='https://github.com/theorchard/processing-accounting', )