-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.27 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (43 loc) · 1.27 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
# SPDX-FileCopyrightText: 2025 Blackcat Informatics® Inc.
# SPDX-License-Identifier: MIT
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "core-data"
version = "0.0.0"
description = "Test harness dependencies for the core_data stack"
readme = "README.md"
requires-python = ">=3.13"
license = {text = "MIT"}
authors = [{name = "Blackcat Informatics"}]
dependencies = [
"psycopg[binary]>=3.2.10",
]
[tool.uv]
default-groups = ["dev"]
[dependency-groups]
dev = [
"pytest>=8.4.2",
"graphql-core>=3.2.3",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"ignore:.*rm_rf.*:pytest.PytestWarning",
]
markers = [
"security: security posture assertions for containers",
"backup: backup and maintenance workflow checks",
"extensions: database extension availability checks",
"pool: connection pool behaviour checks",
"pool_heavy: long-running pool/fixture workflows",
"lint: static analysis of shell scripts",
"config: configuration rendering checks",
"ci: CI helper workflow checks (ci-verify/ci-up)",
"permissions: permission management and validation checks",
]
[tool.hatch.build.targets.wheel]
packages = ["src/core_data"]
[tool.hatch.build.targets.sdist]
include = ["src/core_data"]