-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 978 Bytes
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 978 Bytes
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
[project]
name = "ricky-lim-github-io"
version = "0.9.0"
description = "Add your description here"
authors = [
{ name = "rickylim", email = "rlim.email@gmail.com" }
]
dependencies = [
"lektor>=3.3.11",
]
readme = "README.md"
requires-python = ">= 3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/ricky_lim_github_io"]
[dependency-groups]
dev = [
"bump-my-version>=1.0.2",
"ipython>=8.12.3",
"pre-commit>=3.5.0",
"pyspark>=3.5.6",
"pytest>=8.3.5",
"python-slugify>=8.0.4",
]
[tool.bumpversion]
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
tag_message = "Bump version: {current_version} → {new_version}"
commit = true
tag = true
sign_tags = false
tag_name = "v{new_version}"
allow_dirty = false
[[tool.bumpversion.files]]
filename = "pyproject.toml"