-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (54 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
64 lines (54 loc) · 1.43 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
[build-system]
requires = ["setuptools>=82.0.1", "setuptools-scm>=10.0.5"]
build-backend = "setuptools.build_meta"
[project]
name = "github-standards"
description = "Hooks for use in a DBT development environment"
readme = "README.md"
keywords = ["pre-commit", "dbt", "hooks", "security"]
requires-python = ">=3.13"
dependencies = [
"presidio-analyzer>=2.2.360",
"proxy-py>=2.4.10",
"pyyaml>=6.0.3",
"en_core_web_sm @ https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.8.0/en_core_web_sm-3.8.0-py3-none-any.whl",
"gitpython>=3.1.45",
"prettytable>=3.17.0",
"asyncio>=4.0.0",
"anyio>=4.13.0",
"aiohttp>=3.13.2",
]
version = "v1.4.1"
[project.scripts]
hooks-cli = "src.hooks.cli:main"
[dependency-groups]
dev = [
"pytest>=9.0.3",
"ruff>=0.15.11",
"pre-commit>=4.5.0",
"pytest-cov>=5.0.0",
"requests-mock>=1.12.1",
"pytest-subprocess>=1.5.4",
"setuptools-scm>=10.0.5",
"pytest-aiohttp>=1.1.0",
]
# Presence enables setuptools-scm
[tool.setuptools_scm]
[tool.setuptools.package-data]
"*" = ["*.*"] # Make sure to include the yaml files
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*"]
namespaces = false
[tool.uv]
package = true
required-version = "==0.10.9"
[tool.ruff]
line-length = 125
indent-width = 4
target-version = "py312"
extend-select = ["T201"]
[tool.coverage.run]
omit = ['tests/*']
[tool.pytest]
anyio_mode = "auto"
asyncio_mode = "auto"