-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
96 lines (87 loc) · 2.87 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{ name = "Tpt", email = "[email protected]" },
{ name = "Nikola", email = "[email protected]" },
]
description = "rdflib stores based on pyoxigraph"
classifiers = [
"Programming Language :: Python",
"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 :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Database :: Database Engines/Servers",
]
dependencies = ["pyoxigraph~=0.4.0", "rdflib>=6.3,<8.0"]
dynamic = ["version"]
license = { text = "BSD-3-Clause" }
name = "oxrdflib"
readme = "README.md"
requires-python = ">=3.8"
[project.entry-points."rdf.plugins.store"]
Oxigraph = "oxrdflib.store:OxigraphStore"
oxigraph = "oxrdflib.store:OxigraphStore"
[project.entry-points."rdf.plugins.parser"]
ox-turtle = "oxrdflib.parser:OxigraphTurtleParser"
ox-ttl = "oxrdflib.parser:OxigraphTurtleParser"
ox-n3 = "oxrdflib.parser:OxigraphN3Parser"
ox-nq = "oxrdflib.parser:OxigraphNQuadsParser"
ox-nquads = "oxrdflib.parser:OxigraphNQuadsParser"
ox-ntriples = "oxrdflib.parser:OxigraphNTriplesParser"
ox-nt = "oxrdflib.parser:OxigraphNTriplesParser"
ox-nt11 = "oxrdflib.parser:OxigraphNTriplesParser"
ox-trig = "oxrdflib.parser:OxigraphTriGParser"
ox-xml = "oxrdflib.parser:OxigraphRdfXmlParser"
[project.entry-points."rdf.plugins.serializer"]
ox-turtle = "oxrdflib.serializer:OxigraphTurtleSerializer"
ox-ttl = "oxrdflib.serializer:OxigraphTurtleSerializer"
ox-n3 = "oxrdflib.serializer:OxigraphN3Serializer"
ox-nq = "oxrdflib.serializer:OxigraphNQuadsSerializer"
ox-nquads = "oxrdflib.serializer:OxigraphNQuadsSerializer"
ox-ntriples = "oxrdflib.serializer:OxigraphNTriplesSerializer"
ox-nt = "oxrdflib.serializer:OxigraphNTriplesSerializer"
ox-nt11 = "oxrdflib.serializer:OxigraphNTriplesSerializer"
ox-trig = "oxrdflib.serializer:OxigraphTriGSerializer"
ox-xml = "oxrdflib.serializer:OxigraphRdfXmlSerializer"
[project.urls]
Changelog = "https://github.com/oxigraph/oxrdflib/blob/main/CHANGELOG.md"
Documentation = "https://github.com/oxigraph/oxrdflib/blob/main/README.md"
Homepage = "https://github.com/oxigraph/oxrdflib"
Source = "https://github.com/oxigraph/oxrdflib"
Tracker = "https://github.com/oxigraph/oxrdflib/issues"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
"ARG",
"B",
"C40",
"C901",
"E",
"F",
"FLY",
"I",
"ICN",
"N",
"PERF",
"PIE",
"PTH",
"RET",
"RUF",
"SIM",
"T10",
"TCH",
"TID",
"UP",
"W",
"YTT",
]
[tool.setuptools_scm]