-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
39 lines (37 loc) · 1.22 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
36
37
38
39
import setuptools
with open("README.md", "r", encoding="utf-8") as description:
long_description = description.read()
setuptools.setup(
name="kibana-api",
version="0.0.4",
author="Mauricio Matias Conde",
author_email="[email protected]",
description="This is an API mapping library for Kibana API to generate visualizations and dashboards automatically",
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT',
url="https://github.com/cr0wg4n/kibana-api",
project_urls={
"Bug Tracker": "https://github.com/cr0wg4n/kibana-api/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
],
keywords=["elasticsearch", "kibana", "development", "api mapping"],
packages=["kibana_api"],
package_data={
'kibana_api': [
'mappings/*.json',
]
},
install_requires=[
"requests",
"multipledispatch"
],
python_requires=">=3.0",
)