-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (30 loc) · 941 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
[tool.poetry]
name = "vocab-tools"
version = "0.1.0"
description = "Tools for validating and working with iSamples SKOS vocabularies."
authors = ["datadave <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "vocab_tools"}]
[tool.poetry.dependencies]
python = "^3.9"
click = "^8"
rich = "^13"
rdflib = "^7"
pyshacl = {git = "https://github.com/datadavev/pySHACL.git", rev = "report_metrics"}
[tool.poetry.group.dev]
optional=true
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
jupyter = "^1"
graphviz = "^0"
[tool.poetry.group.service]
optional=true
[tool.poetry.group.service.dependencies]
rdflib-endpoint = {git = "https://github.com/vemonet/rdflib-endpoint.git", rev="main", optional=true}
uvicorn = {version = "^0", optional=true}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
vocab = 'vocab_tools.cli:main'