-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
35 lines (32 loc) · 1.25 KB
/
pyproject.toml
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
[project]
name = "maplib"
description = "Dataframe-based interactive knowledge graph construction using stOTTR templates"
dependencies = ["polars==0.20.13", "pyarrow>=7.0.0"]
readme = "README.md"
authors = [{name = "Magnus Bakken", email = "[email protected]" }]
license = {file = "LICENSE"}
requires-python = ">=3.8"
keywords = ["rdf", "graph", "dataframe", "sparql", "ottr"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Rust",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Scientific/Engineering",
]
[project.urls]
Homepage = "https://github.com/DataTreehouse/maplib"
Documentation = "https://github.com/DataTreehouse/maplib/blob/main/doc/python_mapper_api.md"
Repository = "https://github.com/DataTreehouse/maplib"
Changelog = "https://github.com/DataTreehouse/maplib/releases"
[build-system]
requires = ["maturin==1.2.3"]
build-backend = "maturin"
[tool.maturin]
module-name = "maplib._maplib"
python-source = "python"