-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
38 lines (35 loc) · 1.35 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
#!/usr/bin/env python3
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="spacyopentapioca",
version='0.1.7',
author="Renat Shigapov",
license="MIT",
description="A spaCy wrapper of OpenTapioca for named entity linking on Wikidata",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/UB-Mannheim/spacyopentapioca",
install_requires=['spacy>=3.1.4', 'requests>=2.24.0', ],
packages=find_packages(),
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires='>=3.6',
entry_points={
'spacy_factories': 'opentapioca = spacyopentapioca.entity_linker:EntityLinker'
}
)