-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (39 loc) · 1.13 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
[build-system]
requires = ["setuptools>=68.2.0"]
build-backend = "setuptools.build_meta"
[project]
name = "id-svo-extractor"
version = "0.3.0"
requires-python = ">=3.10"
description = "id-svo-extractor: Extract SVO triples from Indonesian text."
readme = "README.md"
license = { file = "LICENSE" }
dependencies = [
"spacy-stanza==1.0.4"
]
authors = [
{ name = "Nikolaus Georgi", email = "[email protected]" }
]
maintainers = [
{ name = "Nikolaus Georgi", email = "[email protected]" }
]
keywords = [
"SVO extraction",
"Indonesian NLP",
"Stanza",
"information extraction",
"text analysis"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://github.com/nxgeo/id-svo-extractor"
Repository = "https://github.com/nxgeo/id-svo-extractor.git"