-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
pyproject.toml
73 lines (71 loc) · 1.93 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "kglab"
version = "0.6.7"
authors = [
{name = "Paco Nathan", email = "[email protected]"},
]
description = "a simple abstraction layer in Python for building knowledge graphs"
requires-python = ">=3.7"
license = {text = "MIT"}
keywords = [
"controlled vocabulary",
"cugraph",
"deep learning",
"embedding",
"gpu",
"graph algorithms",
"igraph",
"inference",
"interactive visualization",
"json-ld",
"knowledge graph",
"managing namespaces",
"morph-kgc",
"n3",
"networkx",
"owl",
"pandas",
"parquet",
"probabilistic soft logic",
"psl",
"pyvis",
"rapids",
"rdf",
"rml",
"roam research",
"serialization",
"shacl",
"skos",
"sparql",
"statistical relational learning",
"topology",
"turtle",
"validation"
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Indexing"
]
dynamic = ["dependencies", "readme"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
readme = {file = ["README.md"]}