-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
96 lines (88 loc) · 2.41 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[tool.poetry]
name = "roc-validator"
version = "0.4.6"
description = "A Python package to validate RO-Crates"
authors = [
"Marco Enrico Piras <[email protected]>",
"Luca Pireddu <[email protected]>",
"Simone Leo <[email protected]>",
]
readme = "README.md"
license = "Apache-2.0"
# Links to the GitHub repository and the project homepage/documentation
repository = "https://github.com/crs4/rocrate-validator"
homepage = "https://github.com/crs4/rocrate-validator"
documentation = "https://github.com/crs4/rocrate-validator"
# Keywords and classifiers
keywords = [
"RO-Crate",
"validation",
"metadata",
"research object",
"data management",
"scientific data",
"Python"
]
classifiers = [
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Utilities",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
# Package Settings
packages = [{ include = "rocrate_validator", from = "." }]
include = [
{ path = "pyproject.toml", format = [
"sdist",
"wheel",
] },
{ path = "README.md", format = [
"sdist",
"wheel",
] },
{ path = "LICENSE", format = [
"sdist",
"wheel",
] }
]
[tool.poetry.dependencies]
python = "^3.9.20"
rdflib = "^7.0.0"
pyshacl = "^0.26.0"
click = "^8.1.7"
rich = "^13.8.0"
toml = "^0.10.2"
rich-click = "^1.8.3"
colorlog = "^6.8"
requests = "^2.32.3"
requests-cache = "^1.2.1"
inquirerpy = "^0.3.4"
[tool.poetry.group.dev.dependencies]
pyproject-flake8 = "^6.1.0"
pylint = "^3.1.0"
ipykernel = "^6.29.3"
[tool.poetry.group.test.dependencies]
pytest-cov = "^5.0.0"
pytest-xdist = "^3.6.1"
[tool.flake8]
max-line-length = 120
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
rocrate-validator = "rocrate_validator.cli:cli"
[tool.rocrate_validator]
skip_dirs = [".git", ".github", ".vscode"]
[tool.pytest.ini_options]
testpaths = ["tests"]