"""Setup build-helper project.""" from setuptools import find_packages from setuptools import setup setup( name='build-helper', version='0.1', python_requires='>=3.4', description='Accounting Workflows', packages=find_packages(), package_data={ }, entry_points=dict( console_scripts=[ 'helper_exec = accounting.bin.build_helper.executor:execute' ]), tests_require=['pytest', 'pytest-cov'], url='https://github.com/theorchard/collab/adovgobrod/scripts/build_helper', )