Fork of https://github.com/oxigraph/oxigraph.git for the purpose of NextGraph project
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
888 B
31 lines
888 B
5 years ago
|
[package]
|
||
|
name = "oxigraph_python"
|
||
|
version = "0.1.0"
|
||
|
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
|
||
|
license = "MIT/Apache-2.0"
|
||
|
readme = "README.md"
|
||
|
keywords = ["RDF", "N-Triples", "Turtle", "RDF/XML", "SPARQL"]
|
||
|
repository = "https://github.com/oxigraph/oxigraph/tree/master/python"
|
||
|
description = """
|
||
|
Python bindings of Oxigraph
|
||
|
"""
|
||
|
edition = "2018"
|
||
|
|
||
|
[lib]
|
||
|
crate-type = ["cdylib"]
|
||
|
name = "oxigraph"
|
||
|
|
||
|
[dependencies]
|
||
|
oxigraph = {path = "../lib", features=["sled"]}
|
||
|
pyo3 = {version="0.11", features = ["extension-module"]}
|
||
|
|
||
|
[package.metadata.maturin]
|
||
|
classifier = [
|
||
|
"Development Status :: 2 - Pre-Alpha",
|
||
|
"Intended Audience :: Developers",
|
||
|
"License :: OSI Approved :: Apache Software License",
|
||
|
"License :: OSI Approved :: MIT License",
|
||
|
"Programming Language :: Python :: 3 :: Only",
|
||
|
"Programming Language :: Rust",
|
||
|
"Topic :: Database :: Database Engines/Servers"
|
||
|
]
|