A distributed command execution framework.
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.
 

35 lines
894 B

#!/usr/bin/env python
from setuptools import setup, find_packages
from employ import __version__
setup(
name="employ",
version=__version__,
author="Brett Langdon",
author_email="brett@blangdon.com",
packages=find_packages(),
namespace_packages=[
"employ.commands",
],
install_requires=[
"docopt>=0.6.0",
"boto>=2.13.0",
"straight.plugin>=1.4.0",
],
scripts=[
"bin/employ",
],
setup_requires=[],
description="Distributed one time command execution and aggregation tool",
license="MIT",
url='https://github.com/brettlangdon/employ',
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: MIT License",
],
)