-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (34 loc) · 1.02 KB
/
setup.py
File metadata and controls
40 lines (34 loc) · 1.02 KB
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
33
34
35
36
37
38
39
40
from setuptools import setup
__version__ = '0.0.1' # This is ovewritten by the execfile below
exec (open('el_rollastico/_version.py').read())
conf = dict(
name='el_rollastico',
description='Automated ElasticSearch cluster rolling restarts/upgrades via SaltStack',
url='http://github.com/vertical-knowledge/el_rollastico',
author='VK',
author_email='vk@vertical-knowledge.com',
license='GPL',
keywords=['elasticsearch', 'elastic', 'cluster', 'salt', 'saltstack', 'rolling', 'upgrade', 'restart'],
classifiers=[],
version=__version__,
packages=['el_rollastico'],
entry_points={
'console_scripts': [
'rollastic = el_rollastico.__main__:cli',
'el_rollastico = el_rollastico.__main__:cli',
]
},
install_requires=[
'elasticsearch',
'click',
],
extras_require={
# 'salt': [
# 'salt',
# ],
},
)
conf.update(dict(
download_url='{}/tarball/{}'.format(conf['url'], conf['version']),
))
setup(**conf)