We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90da50c commit c4ff55eCopy full SHA for c4ff55e
2 files changed
pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
5
[project]
6
name = "php-version-compare"
7
-version = "0.1.0"
+dynamic = ["version"]
8
description = "Add your description here"
9
readme = "README.md"
10
requires-python = ">=3.6"
@@ -39,6 +39,9 @@ Repository = "https://github.com/marcfrederick/php-version-compare"
39
Issues = "https://github.com/marcfrederick/php-version-compare/issues"
40
Changelog = "https://github.com/marcfrederick/php-version-compare/releases"
41
42
+[tool.hatch.version]
43
+path = "src/php_version_compare/__init__.py"
44
+
45
[tool.hatch.build.targets.sdist]
46
exclude = ["tox.ini", "tests"]
47
src/php_version_compare/__init__.py
@@ -3,3 +3,5 @@
3
version_compare as version_compare,
Operator as Operator,
)
+__version__ = "0.2.0"
0 commit comments