You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
shepherd-agent/setup.py

21 lines
500 B

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(),
)