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.
oxigraph/python/Cargo.toml

43 lines
1.3 KiB

[package]
name = "pyoxigraph"
version = "0.1.0-rc.1"
authors = ["Tpt"]
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["RDF", "SPARQL", "graph-database", "database"]
repository = "https://github.com/oxigraph/oxigraph/tree/master/python"
description = """
Python bindings of Oxigraph, a SPARQL database and RDF toolkit
"""
edition = "2018"
[lib]
crate-type = ["cdylib"]
name = "pyoxigraph"
doctest = false
[dependencies]
oxigraph = {version = "0.1.0-rc.1", features = ["sled"]}
pyo3 = {version = "0.11", features = ["extension-module"]}
[package.metadata.maturin]
classifier = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Rust",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
project-url = [
"Documentation, https://oxigraph.org/pyoxigraph/",
"Source, https://github.com/oxigraph/oxigraph/tree/master/python"
]
requires-python = ">=3.5"