-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 990 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 990 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from setuptools import setup, find_packages
setup(
name='docker-executor',
version='0.3.7',
author='Javier Cacheiro',
author_email='bigdata-dev@listas.cesga.es',
url='https://github.com/javicacheiro/docker-executor',
license='MIT',
description='Docker executor with pipework and consul support',
long_description=open('README.rst').read(),
packages=find_packages(),
include_package_data=True,
install_requires=[
'click',
'consul-service-discovery',
'configuration_registry',
'kvstore',
],
entry_points='''
[console_scripts]
docker-executor=executor.cli:cli
''',
scripts=['utils/pipework'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)