-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (28 loc) · 934 Bytes
/
setup.py
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
def readme():
with open('README.md') as f:
return f.read()
setup(
name='elasticsearch_upgrade',
version='0.2.1',
description='Performs a rolling upgrade of an Elasticsearch cluster.',
long_description=readme(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
keywords='elasticsearch rolling upgrade',
url='https://github.com/pietervogelaar/elasticsearch_upgrade',
author='Pieter Vogelaar',
author_email='pieter@pietervogelaar.nl',
license='MIT',
install_requires=[
'requests',
],
scripts=['elasticsearch_upgrade.py'],
include_package_data=True,
zip_safe=False)