-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
42 lines (33 loc) · 961 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "qlever"
description = "Script for using the QLever SPARQL engine."
version = "0.5.14"
authors = [
{ name = "Hannah Bast", email = "[email protected]" }
]
readme = "README.md"
license = { text = "Apache-2.0" }
requires-python = ">=3.8"
keywords = ["SPARQL", "RDF", "Knowledge Graphs", "Triple Store"]
classifiers = [
"Topic :: Database :: Database Engines/Servers",
"Topic :: Database :: Front-Ends"
]
dependencies = [ "psutil", "termcolor", "argcomplete" ]
[project.urls]
Github = "https://github.com/ad-freiburg/qlever"
[project.scripts]
"qlever" = "qlever.qlever_main:main"
"qlever-old" = "qlever.qlever_old:main"
[tool.setuptools]
license-files = ["LICENSE"]
package-data = { "qlever" = ["Qleverfiles/*"] }
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.ruff]
line-length = 79
[tool.ruff.lint]
extend-select = ["I"]