-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 1.03 KB
/
Copy pathsetup.py
File metadata and controls
34 lines (29 loc) · 1.03 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
33
34
# 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="barton.tomas@gmail.com",
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__,
)