We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d45bc16 commit 66ce420Copy full SHA for 66ce420
1 file changed
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "specify-cli"
3
-version = "0.0.22"
+dynamic = ["version"]
4
description = "Specify CLI, part of GitHub Spec Kit. A tool to bootstrap your projects for Spec-Driven Development (SDD)."
5
requires-python = ">=3.11"
6
dependencies = [
@@ -16,9 +16,15 @@ dependencies = [
16
specify = "specify_cli:main"
17
18
[build-system]
19
-requires = ["hatchling"]
+requires = ["hatchling", "hatch-vcs"]
20
build-backend = "hatchling.build"
21
22
+[tool.hatch.version]
23
+source = "vcs"
24
+
25
+[tool.hatch.build.hooks.vcs]
26
+version-file = "src/specify_cli/_version.py"
27
28
[tool.hatch.build.targets.wheel]
29
packages = ["src/specify_cli"]
30
0 commit comments