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 de04c97 commit abfa28dCopy full SHA for abfa28d
setup.py
@@ -18,7 +18,9 @@ def get_requirements():
18
19
def get_version():
20
current_dir = os.path.abspath(os.path.dirname(__file__))
21
- version_file = os.path.join(current_dir, "sahi", "__init__.py")
+ version_file = os.path.join(
22
+ current_dir, "streamlit_image_comparison", "__init__.py"
23
+ )
24
with io.open(version_file, encoding="utf-8") as f:
25
return re.search(r'^__version__ = [\'"]([^\'"]*)[\'"]', f.read(), re.M).group(1)
26
streamlit_image_comparison/__init__.py
@@ -6,6 +6,8 @@
6
import os
7
import uuid
8
9
+__version__ = "0.0.1"
10
+
11
TEMP_DIR = "temp"
12
13
0 commit comments