-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (25 loc) · 880 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
"""
A Python3 program that extracts the occurence of distinct values of a given path in a line-delimited json file.
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='ldj_distinctvalues',
version='0.0.1',
description='a Python3 program that extracts some statistics regarding field coverage from an elasticsearch index',
url='https://github.com/slub/ldj-distinctvalues',
author='Bernhard Hering',
author_email='bernhard.hering@slub-dresden.de',
license="Apache 2.0",
packages=[
'ldj_distinctvalues',
],
package_dir={'ldj_distinctvalues': 'ldj_distinctvalues'},
install_requires=[
'argparse>=1.4.0'
],
entry_points={
"console_scripts": ["ldj-distinctvalues=ldj_distinctvalues.ldj_distinctvalues:run"]
}
)