-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
104 lines (87 loc) · 2.09 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
97
98
99
100
101
102
103
104
[build-system]
requires = [
"setuptools==71.1.0",
"setuptools-scm==8.1.0",
"wheel==0.43.0",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown; charset=UTF-8"}
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.setuptools_scm]
version_file = "src/goose/_version.py"
[project]
name = "git-goose"
authors = [
{ name="Anton Agestam", email="git@antonagestam.se" },
]
description = "A picky and eager Git hook runner."
license = {text = "BSD 3-Clause"}
requires-python = ">=3.13,<3.14"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.14",
"Development Status :: 4 - Beta",
"Typing :: Typed",
]
dynamic = ["version", "readme"]
dependencies = [
"uv",
"pydantic",
"PyYAML",
"nodeenv",
"identify",
"typer",
# https://typer.tiangolo.com/#optional-dependencies
"rich",
# https://typer.tiangolo.com/#optional-dependencies
"shellingham",
]
[project.urls]
"Source Repository" = "https://github.com/antonagestam/goose"
[project.scripts]
goose = "goose.__main__:cli"
[project.optional-dependencies]
test = [
"pytest",
"pytest-asyncio",
]
docs = [
"mkdocs",
"mike",
"mkdocs-material",
"markdown-include",
]
[tool.mypy]
python_version = 3.13
show_error_codes = true
pretty = true
files = ["src", "tests"]
plugins = ["pydantic.mypy"]
ignore_missing_imports = false
no_implicit_reexport = true
no_implicit_optional = true
strict_equality = true
strict_optional = true
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_subclassing_any = true
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
warn_unreachable = true
[tool.check-manifest]
ignore = ["src/goose/_version.py"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
addopts = "--import-mode=importlib"