-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (95 loc) · 2.19 KB
/
pyproject.toml
File metadata and controls
106 lines (95 loc) · 2.19 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
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
97
98
99
100
101
102
103
104
105
106
[project]
name = "rocrate-action-recorder"
description = "Record calls of Python CLI commands into a Research Object Crate"
readme = "README.md"
authors = [
{ name = "Stefan Verhoeven", email = "[email protected]" }
]
requires-python = ">=3.13"
dependencies = [
"rocrate>=0.14.2",
]
dynamic = ["version"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
]
[project.urls]
"Homepage" = "https://github.com/i-VRESSE/rocrate-action-recorder"
"Repository" = "https://github.com/i-VRESSE/rocrate-action-recorder"
"Issues" = "https://github.com/i-VRESSE/rocrate-action-recorder/issues"
"Documentation" = "https://rocrate-action-recorder.readthedocs.io/"
[project.optional-dependencies]
click = [
"click>=8.1.0",
]
cyclopts = ["cyclopts>=4.10.1"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/rocrate_action_recorder/__about__.py"
[dependency-groups]
dev = [
{include-group = "typecheck"},
{include-group = "test"}
]
typecheck = [
"pyright>=1.1.408",
]
test = [
"click>=8.1.0",
"pytest>=9.0.2",
"pytest-asyncio>=0.21.0",
"pytest-cov>=7.0.0",
"roc-validator>=0.8.0",
"cyclopts>=4.10.1",
"pydantic>=2.0.0",
"attrs>=24.0.0",
]
docs = [
"sphinx>=9.1.0",
"myst_parser>=0.13",
"sphinx-autoapi",
"sphinx_copybutton",
"sphinx_autodoc_typehints",
"furo>=2023.08.17",
]
[tool.pytest]
minversion = "9.0"
strict = true
addopts = ["--doctest-modules", "--import-mode=importlib"]
filterwarnings = [
"error",
]
log_level = "INFO"
testpaths = [
"tests", "src",
]
[tool.coverage]
run.source = ["src"]
run.branch = true
[tool.pyright]
include = ['src']
pythonVersion = "3.14"
pythonPlatform = "Linux"
[tool.ruff]
line-length = 120
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.isort]
known-first-party = ["rocrate_action_recorder"]
[tool.ruff.lint]
select = [
"E",
"F",
"I",
]
ignore = [
"E501"
]