-
Notifications
You must be signed in to change notification settings - Fork 68
/
setup.cfg
82 lines (76 loc) · 1.82 KB
/
setup.cfg
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# see documentation, e.g.
# - https://packaging.python.org/tutorials/packaging-projects/#configuring-metadata
# - https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html
# - https://www.python.org/dev/peps/pep-0314/
[metadata]
author = Johannes Michael
author_email = mick.vanhulst@gmail.com
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering
description = REL: Radboud Entity Linker
keywords =
entity-linking
entity-disambiguation
wikipedia
natural-language-processing
long_description = file: README.md
long_description_content_type = text/markdown
name = radboud-el
project_urls =
Bug Tracker = https://github.com/informagi/REL/issues
Documentation = https://rel.readthedocs.io
url = https://github.com/informagi/REL
version = 0.1.0
[options]
zip_safe = False
packages = find_namespace:
package_dir =
= src
include_package_data = True
install_requires =
anyascii
colorama
fastapi
flair>=0.11
konoha
nltk
pydantic
segtok
spacy
torch
uvicorn
[options.extras_require]
develop =
# deployment
bump2version
# testing
black
coverage
flake8
isort
pytest
docs =
markdown-include
mkdocs
mkdocs-material
mkdocstrings[python]
publishing =
twine
wheel
build
[options.packages.find]
where = src
# [options.entry_points]
# console_scripts =