We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 100f1a8 commit 1c28b7cCopy full SHA for 1c28b7c
pygeofilter/__init__.py
@@ -25,4 +25,7 @@
25
# THE SOFTWARE.
26
# ------------------------------------------------------------------------------
27
28
-__version__ = "0.2.4"
+from .version import __version__
29
+
30
31
+__all__ = ["__version__"]
pygeofilter/version.py
@@ -0,0 +1 @@
1
+__version__ = "0.2.4"
setup.cfg
@@ -1,5 +1,5 @@
[metadata]
2
-version = attr: pygeofilter.__version__
+version = attr: pygeofilter.version.__version__
3
4
######################################################
5
# code formating / lint / type checking configurations
0 commit comments