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.
22 lines
513 B
22 lines
513 B
from setuptools import setup
|
|
|
|
setup(
|
|
name='shepherd',
|
|
version='0.3dev',
|
|
author='Thomas Wilson',
|
|
author_email='t.wilson@distreon.com.au',
|
|
packages=['shepherd', ],
|
|
install_requires=[
|
|
'toml',
|
|
'apscheduler',
|
|
'paramiko',
|
|
'click'
|
|
],
|
|
entry_points={
|
|
'console_scripts': ['shepherd=shepherd.core:cli'],
|
|
},
|
|
license='GPLv3+',
|
|
description='Herd your mob of physically remote nodes',
|
|
long_description=open('README.md').read(),
|
|
)
|