-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
49 lines (45 loc) · 1.03 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
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["glirel", "glirel.*"]
[tool.setuptools.dynamic]
version = {attr = "glirel.__version__"}
[project]
name = "glirel"
description = "Generalist model for Relation Extraction (Extract any relation 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 = "Jack Boylan"},
{name = "Urchade Zaratiana"},
{name = "Nadi Tomeh"},
{name = "Pierre Holat"},
{name = "Thierry Charnois"},
]
maintainers = [
{name = "Jack Boylan"},
]
dependencies = [
"torch",
"transformers",
"huggingface_hub",
"flair",
"seqeval",
"tqdm",
"datasets",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/jackboyla/GLiREL"