from setuptools import setup setup( name='shepherd', version='0.2dev', author='Thomas Wilson', author_email='t.wilson@distreon.com.au', packages=['shepherd', ], install_requires=[ 'toml', 'apscheduler', 'paramiko' ], entry_points={ 'console_scripts': ['shepherd=shepherd.core:main'], }, license='MIT license', description='Herd your mob of physically remote nodes', long_description=open('README.md').read(), )