summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorBrett Curran <brettjcurran@gmail.com>2026-02-12 22:37:19 +1100
committerBrett Curran <brettjcurran@gmail.com>2026-04-15 16:37:51 +1000
commit44cb633a1f51ae9dd0745e1e221602249b068acb (patch)
treeed1d6ab2cfc0cfe349321d0597fdf62f1c1a7d00 /pyproject.toml
parent2e7b1a5cea25903427532dcd956630fbdc0cfba1 (diff)
add ignore patterns and category keywords
* ignore patterns will skip files containing the pattern in the path * category keywords guess what category a file may belng to if the keyword is found in the path
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml7
1 files changed, 7 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
index dcde496..eb0ab45 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -11,6 +11,13 @@ dependencies = [
[project.scripts]
publish = 'vtt_publish.tui:main'
+[build-system]
+requires = ["hatchling"]
+build-backend = "hatchling.build"
+
+[tool.hatch.build.targets.wheel]
+packages = ["src/vtt_publish"]
+
[tool.bumpversion]
current_version = "0.3.0"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"