-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 942 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
33
34
import re
from setuptools import setup
setup(
name='kql-parser',
version=open('VERSION', 'r').read().strip(),
author='aloshi',
author_email='[email protected]',
license='MIT',
url='https://github.com/Aloshi/kql-parser',
install_requires=open('requirements.txt').readlines(),
extras_require=dict(
dev=open('requirements-dev.txt').readlines()
),
description='A Python parser for the Kibana Query Language (KQL, also known as Kuery).',
long_description=open('README.md', 'r').read(),
keywords=['python', 'kql', 'kibana', 'kuery'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
],
packages=["kql_parser"],
data_files=[('share/kql-parser', ['README.rst'])],
entry_points=dict(
console_scripts=[
'kql-parser=kql_parser.cli:cli'
]
),
)