from setuptools import setup, find_packages setup( name='rs', version='0.1', py_modules=['sync'], install_requires=[ 'Click', 'pyyaml', 'pyinotify' ], entry_points=''' [console_scripts] rs=sync:app ''' )