-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
35 lines (34 loc) · 1.1 KB
/
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
33
34
35
from setuptools import setup
try:
from pypandoc import convert_file
read_md = lambda f: convert_file(f, 'rst')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
setup(
name="elyzer",
entry_points={
'console_scripts': [
'elyzer=elyzer.__main__:main'
]
},
packages=['elyzer'],
version="1.2.2",
description="Step-by-Step Debug Elasticsearch Analyzers",
long_description=read_md('README.md'),
license="Apache",
author="Doug Turnbull",
author_email="dturnbull@o19s.com",
url='https://github.com/o19s/elyzer',
install_requires=['elasticsearch>=5.0.0,<6.0.0'],
keywords=["elasticsearch", "database"],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Topic :: Utilities'
]
)