-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
executable file
·34 lines (32 loc) · 992 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
28
29
30
31
32
33
34
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="elastic-wikidata",
version="1.0.1",
author="Science Museum Group",
description="elastic-wikidata",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TheScienceMuseum/elastic-wikidata",
download_url="https://github.com/TheScienceMuseum/elastic-wikidata/archive/v1.0.1.tar.gz",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=[
"click==7.1.2",
"elasticsearch==7.8.1",
"SPARQLWrapper==1.8.5",
"tqdm>=4.48.2",
"requests==2.24.0",
],
py_modules=["cli", "elastic_wikidata"],
packages=["elastic_wikidata"],
entry_points="""
[console_scripts]
ew=cli:main
""",
)