forked from txus/docker-launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (15 loc) · 664 Bytes
/
setup.py
File metadata and controls
22 lines (15 loc) · 664 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
from launcher import VERSION
with open('README.md') as readme:
README = readme.read()
setup(name='docker-launcher',
version=VERSION,
description=('Deploy multi-node, multi-container clusters '
'from simple configuration files'),
long_description=README,
author='ATS Advanced Telematic Systems GmbH',
packages=find_packages(),
include_package_data=True,
install_requires=['pyyaml', 'jinja2', 'boto', 'pyrx-ats', 'ansible', 'docker-py==1.2.3'],
extras_require={'dev': ['pytest', 'pytest-cov', 'pylint']},
scripts=['bin/docker-launcher'])