-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (45 loc) · 1.11 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
[build-system]
requires = ["setuptools >=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tap2shacl"
version = "1.0.0-beta.2"
description = "DC TAP to SHACL converter."
readme = "README.MD"
authors = [{name = "Phil Barker", email="phil.barker@pjjk.co.uk"}]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Natural Language :: English",
]
license = { file = "LICENSE" }
keywords = ["RDF", "metadata application profile", "SHACL"]
dependencies = [
"rdflib >=7.0.0",
"pyyaml >=6.0.1",
"click >=7.1.2",
"pygetch >=0.1.0",
"dctap == 0.4.5"
]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = [
"pytest >= 6.2",
"black >= 21.6b0",
"pytest-black >= 0.3.12",
]
[project.urls]
Homepage = "https://github.com/philbarker/TAP2SHACL/"
[project.scripts]
tap2shacl = "tap2shacl.__main__:main"
[tool.pytest.ini_options]
pythonpath = [
"src"
]
minversion = "6.0"
testpaths = [
"tests",
]