-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
40 lines (35 loc) · 1.07 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
40
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
import pathlib
import esdedupe
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
author='Tomas Barton',
author_email='[email protected]',
classifiers=[
"Programming Language :: Python :: 3",
"OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
description="A tool for duplicate removal from Elasticsearch",
entry_points={
'console_scripts': 'esdedupe=esdedupe.cmd:main',
},
install_requires=[
'elasticsearch>5.0'
'psutil',
'tqdm',
'ujson',
'requests'
],
license='Apache License 2.0',
keywords='elasticsearch',
long_description=long_description,
long_description_content_type='text/markdown',
name='esdedupe',
packages=find_packages(),
url='https://github.com/deric/es-dedupe',
version=esdedupe.__VERSION__,
)