forked from dbpedia/databus-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 701 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (26 loc) · 701 Bytes
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
[tool.poetry]
name = "databusclient"
version = "0.15"
description = "A simple client for submitting, downloading, and deleting data on the DBpedia Databus"
authors = ["DBpedia Association"]
license = "Apache-2.0 License"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
click = "^8.0.4"
requests = "^2.28.1"
tqdm = "^4.42.1"
SPARQLWrapper = "^2.0.0"
rdflib = "^7.2.1"
[tool.poetry.group.dev.dependencies]
black = "^22.6.0"
pytest = "^7.1.3"
ruff = "^0.5.5"
[tool.poetry.scripts]
databusclient = "databusclient.cli:app"
[tool.ruff]
target-version = "py311"
src = ["databusclient", "tests"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"