-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (73 loc) · 2 KB
/
pyproject.toml
File metadata and controls
85 lines (73 loc) · 2 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fluentcron"
version = "0.2.0"
description = "A fluent interface for constructing crontab schedules"
authors = [{ name = "thelab", email = "thelabdev@thelab.co" }]
license = { text = "ISC" }
readme = "README.md"
requires-python = ">=3.13"
dependencies = []
[project.urls]
Homepage = "https://gitlab.com/thelabnyc/fluentcron"
Documentation = "https://gitlab.com/thelabnyc/fluentcron"
Repository = "https://gitlab.com/thelabnyc/fluentcron"
[dependency-groups]
dev = [
"mypy (>=1.19.1)",
"ruff (>=0.15.7)",
"coverage (>=7.13.5)",
"tox (>=4.50.1)",
]
[tool.hatch.build.targets.wheel]
packages = ["fluentcron"]
[[tool.uv.index]]
name = "thelabnyc"
url = "https://gitlab.com/api/v4/groups/269576/-/packages/pypi/simple"
explicit = true
[tool.isort]
profile = "black"
from_first = true
[tool.ruff.lint.isort]
from-first = true
[tool.mypy]
python_version = "3.13"
plugins = []
# Strict mode, see mypy --help
warn_unused_configs = true
disallow_subclassing_any = true
disallow_any_generics = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
no_implicit_reexport = true
show_error_codes = true
# Not turned on by strict
strict_equality = true
[tool.coverage.run]
branch = true
source_pkgs = ["fluentcron"]
omit = ["*/fluentcron/tests/*"]
[tool.coverage.report]
show_missing = true
ignore_errors = true
[tool.commitizen]
name = "cz_conventional_commits"
annotated_tag = true
gpg_sign = true
tag_format = "v$version"
update_changelog_on_bump = true
changelog_merge_prerelease = true
version_provider = "pep621"
version_scheme = "pep440"
version_files = ["pyproject.toml:version"]
pre_bump_hooks = ["pre-commit run --all-files || true", "uv build"]
post_bump_hooks = ["git push origin master $CZ_POST_CURRENT_TAG_VERSION"]