We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f31ee7 commit 78382ebCopy full SHA for 78382eb
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "apmodel"
3
-version = "0.2.4"
+dynamic = ["version"]
4
description = "ActivityStreams 2.0 and nodeinfo 2.0/2.1 implementation for Python."
5
authors = [
6
{name = "AmaseCocoa", email = "cocoa@amase.cc"},
@@ -28,6 +28,10 @@ Changelog = "https://github.com/AmaseCocoa/apmodel/blob/main/CHANGELOG.md"
28
requires = ["pdm-backend"]
29
build-backend = "pdm.backend"
30
31
-
32
[tool.pdm]
33
distribution = true
+
34
+[tool.pdm.version]
35
+source = "scm"
36
+write_to = "apsig/_version.py"
37
+write_template = "__version__ = '{}'"
src/apmodel/_version.py
@@ -0,0 +1 @@
+__version__ = "0.0.0"
0 commit comments