forked from urchade/GLiNER
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
50 lines (44 loc) · 1.02 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["gliner", "gliner.*"]
[tool.setuptools.dynamic]
version = {attr = "gliner.__version__"}
[project]
name = "gliner"
description = "Generalist model for NER (Extract any entity types from texts)"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "Apache-2.0"}
keywords = [
"named-entity-recognition",
"ner",
"data-science",
"natural-language-processing",
"artificial-intelligence",
"nlp",
"machine-learning",
"transformers"
]
authors = [
{name = "Urchade Zaratiana"},
{name = "Nadi Tomeh"},
{name = "Pierre Holat"},
{name = "Thierry Charnois"},
]
maintainers = [
{name = "Urchade Zaratiana"},
]
dependencies = [
"torch>=2.0.0",
"transformers>=4.38.2",
"huggingface_hub>=0.21.4",
"seqeval",
"tqdm",
"onnxruntime",
"sentencepiece",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/urchade/GLiNER"