-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (47 loc) · 1.42 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
51
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
template = "{tag}"
dev_template = "{tag}"
dirty_template = "{tag}"
[project]
name = "tieval"
dynamic = ["version"]
dependencies = [
"nltk",
"xmltodict",
"networkx>=2.8.1",
"cached-path>=1.1.2",
]
requires-python = ">=3.8"
authors = [{ name = "Hugo Sousa", email = "[email protected]" }]
maintainers = [{ name = "Hugo Sousa", email = "[email protected]" }]
description = "A framework for evaluation and development of temporal-aware models."
readme = "README.md"
license = { file = "LICENSE" }
keywords = [
"temporal information",
"evaluation",
"temporal information extraction",
"temporal relation classification",
"temporal relation extraction",
"temporal expression identification",
"event identification",
"event classification",
]
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
[project.optional-dependencies]
test = ["pytest"]
models = ["allenlp==2.9.3", "py_heideltime"]
[project.urls]
Documentation = "https://tieval.readthedocs.io/"
Repository = "https://github.com/LIAAD/tieval"