-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 942 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 942 Bytes
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
[project]
name = "knowledgecomplex"
version = "0.1.0"
description = "Typed simplicial complexes backed by OWL, SHACL, and SPARQL"
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE"}
keywords = ["ontology", "knowledge-graph", "owl", "shacl", "sparql", "simplicial-complex"]
dependencies = [
"rdflib>=7.0",
"pyshacl>=0.25",
"owlrl>=6.0",
"pandas>=2.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = ["pytest>=8.0", "pytest-cov", "ruff", "mypy"]
docs = ["mkdocs-material", "mkdocstrings[python]"]
viz = ["networkx>=3.0", "matplotlib>=3.7"]
viz-interactive = ["networkx>=3.0", "matplotlib>=3.7", "plotly>=5.0"]
analysis = ["numpy>=1.24", "scipy>=1.10"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["knowledgecomplex"]
artifacts = [
"knowledgecomplex/resources/*.ttl",
"knowledgecomplex/queries/*.sparql",
]