-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (83 loc) · 2.09 KB
/
pyproject.toml
File metadata and controls
89 lines (83 loc) · 2.09 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
[project]
name = "datetime-matcher"
version = "0.3.0"
description = "A library which extends regex with support for datetime format codes."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9"
dependencies = [
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing",
"Topic :: Utilities",
"Typing :: Typed",
]
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Stephen Zhao", email = "mail@zhaostephen.com" },
]
keywords = [
"datetime",
"regex",
"datetime parsing",
"datetime format",
"substitution",
"regular expression",
"format",
"strftime",
"strptime",
"parse",
"reformat",
"date",
"time",
"format code",
"search",
"find",
"replace",
"match",
]
[project.urls]
Homepage = "https://github.com/stephen-zhao/datetime-matcher"
Source = "https://github.com/stephen-zhao/datetime-matcher"
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.packages.find]
where = ["src"]
include = ["datetime_matcher"]
[tool.uv]
dev-dependencies = [
"bump-my-version>=1.2.1",
"pytest>=8.4.1",
"uv>=0.8.11",
]
[tool.bumpversion]
current_version = "0.3.0"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
regex = false
ignore_missing_version = false
ignore_missing_files = false
tag = true
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
allow_dirty = false
commit = true
message = "Bump version: {current_version} → {new_version}"
moveable_tags = []
commit_args = ""
setup_hooks = []
pre_commit_hooks = []
post_commit_hooks = []