"""Setup swf-activity-detector project.""" from setuptools import find_packages from setuptools import setup setup( name='swf-activity-detector', version='0.1', description='', packages=find_packages(), entry_points=dict( console_scripts=['garcon = activity_detector.cli:garcon']), tests_require=['pytest', 'pytest-cov'], url='https://github.com/theorchard/swf-activity-detector', )