forked from umutyilmaz44/es2es
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.05 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1.05 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
import setuptools
setuptools.setup(
name="es2es",
version="1.0.0.1",
author="Umit YILMAZ",
author_email="umutyilmaz44@gmail.com",
description="ElasticSearch data read and write to other ElasticSearch library",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
platforms="all",
url="https://github.com/umutyilmaz44/es2es",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Topic :: Internet",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing",
"Intended Audience :: Developers",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: Microsoft",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
],
install_requires=['elasticsearch'],
python_requires=">3.6.*, <4",
packages=['es2es'],
scripts=['bin/es2es']
)