-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.35 KB
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
# pyproject.toml file to build module ricgraph for PyPI.
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["ricgraph"]
[project]
name = "ricgraph"
version = "3.3"
authors = [
{ name="Rik D.T. Janssen" },
]
description = "Ricgraph - Research in context graph"
readme = "README-PyPI.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
license = "MIT"
keywords = ["Research in context graph", "Ricgraph", "Ricgraph Explorer",
"Ricgraph REST API", "Data enrichment", "Data harvesting",
"Data linking", "Enrichment", "Graph", "Graph database",
"Harvest", "Harvest data", "Harvester", "Knowledge graph",
"Linked data", "Metadata", "Utrecht University", "Visualization"]
dependencies = [
"neo4j>=5.8",
"numpy",
"pandas",
"pymemcache",
"requests",
"unidecode",
"markupsafe",
]
[project.urls]
Website = "https://www.ricgraph.eu"
Documentation = "https://docs.ricgraph.eu"
GitHub = "https://github.com/UtrechtUniversity/ricgraph"
Issues = "https://github.com/UtrechtUniversity/ricgraph/issues"
Download = "https://github.com/UtrechtUniversity/ricgraph/releases"
"Release Notes" = "https://github.com/UtrechtUniversity/ricgraph/releases"