-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
32 lines (28 loc) · 959 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
[tool.poetry]
name = "shaclgen"
version = "2.5.2"
description = "Shacl graph generator: python program to generate template shacl graphs"
authors = ["Alexis Keely <[email protected]>", "Natanael Arndt <[email protected]>", "Miel Vander Sande <[email protected]>"]
homepage = "https://github.com/uwlib-cams/shaclgen"
repository = "https://github.com/uwlib-cams/shaclgen"
license = 'MIT'
readme = "README.md"
keywords = ['Linked Data', 'Semantic Web', 'Python', 'SHACL', 'Shapes', 'Schema', 'Validate']
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
]
[tool.poetry.dependencies]
python = "^3.8.1"
rdflib = "^7.0.0"
click = "^8.1.2"
loguru = "^0.6.0"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
shaclgen = "shaclgen.__main__:main"