-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
51 lines (43 loc) · 1.34 KB
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
51
# SPDX-FileCopyrightText: 2024 Helmholtz-Zentrum Dresden - Rossendorf (HZDR)
# SPDX-License-Identifier: CC0-1.0
# SPDX-FileContributor: David Pape
[build-system]
requires = ["setuptools >= 64", "setuptools-scm>8"]
build-backend = "setuptools.build_meta"
[project]
name = "software-card-policies"
dynamic = ["version"]
dependencies = [
"pyshacl[js]>=0.30.0",
"rdflib>=7.1.1",
"toml>=0.10.2",
]
requires-python = ">=3.10"
authors = [
{name = "David Pape", email = "d.pape@hzdr.de"},
]
description = "Program that validates a given metadata file using a set of configurable policies."
readme = "README.md"
license = {text = "Apache-2.0"}
keywords = ["software-publication", "policies", "shacl", "rdf", "metadata"]
classifiers = [
"Programming Language :: Python"
]
[project.optional-dependencies]
docs = [
"sphinx>=8.0.0",
"myst-parser>=4.0.0",
"sphinx-book-theme>=1.1.4",
"taskipy>=1.14.1"
]
[project.scripts]
software-card-validate = "software_card_policies.__main__:main"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
[tool.ruff.lint.per-file-ignores]
"src/software_card_policies/namespaces.py" = ["N815"] # mixed case class parameters
[tool.setuptools_scm]
version_file = "src/software_card_policies/_version.py"
[tool.taskipy.tasks]
docs-build = "sphinx-build -M html docs docs/_build"
docs-clean = "sphinx-build -M clean docs docs/_build"