|
|
|
[package]
|
|
|
|
name = "pyoxigraph"
|
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["RDF", "SPARQL", "graph-database", "database"]
|
|
|
|
repository = "https://github.com/oxigraph/oxigraph/tree/main/python"
|
|
|
|
homepage = "https://pyoxigraph.readthedocs.io/"
|
|
|
|
description = "Python bindings of Oxigraph, a SPARQL database and RDF toolkit"
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
name = "pyoxigraph"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["native-tls"]
|
|
|
|
abi3 = ["pyo3/abi3-py38"]
|
|
|
|
native-tls = ["oxigraph/http-client-native-tls"]
|
|
|
|
rocksdb-pkg-config = ["oxigraph/rocksdb-pkg-config"]
|
|
|
|
rustls = ["oxigraph/http-client-rustls-native"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
oxigraph = { version = "0.4.0-alpha.1-dev", path="../lib" }
|
|
|
|
pyo3 = { version = "0.20", features = ["extension-module"] }
|