-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.13 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1.13 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
32
"""
simple downloader for saving a whole ElasticSearch-index, just the corresponding type or just a document into a line-delimited JSON-File
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='es2json',
version='0.2.0',
description='simple downloader for saving a whole ElasticSearch-index, just the corresponding type or just a document into a line-delimited JSON-File',
url='https://github.com/slub/es2json',
author='Bernhard Hering',
author_email='bernhard.hering@slub-dresden.de',
license="Apache 2.0",
packages=['es2json', 'helperscripts', 'oldapi_calls', 'cli'],
package_dir={'es2json': 'es2json',
'helperscripts': 'es2json',
'oldapi_calls': 'es2json',
'cli': 'es2json'},
install_requires=[
'argparse>=1.4.0',
'elasticsearch>=7.0.0,<8.0.0',
'elasticsearch_dsl>=7.0.0,<8.0.0',
'httplib2>=0.17.0'
],
python_requires=">=3.5,<4",
entry_points={
"console_scripts": ["es2json=es2json.cli:run"]
}
)