We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0087e3 commit d37ceb2Copy full SHA for d37ceb2
pyproject.toml
@@ -25,6 +25,9 @@ dependencies = [
25
]
26
dynamic = ["version"]
27
28
+[tool.setuptools.dynamic]
29
+version = {attr = "aipdf.__version__"}
30
+
31
[project.urls]
32
Homepage = "https://github.com/mindsdb/aipdf"
33
Repository = "https://github.com/mindsdb/aipdf.git"
src/aipdf/__init__.py
@@ -1,5 +1,5 @@
1
from .ocr import ocr
2
3
-__version__ = "0.1.0"
+__version__ = "0.0.1"
4
5
__all__ = ["__version__", "ocr"]
0 commit comments