fix: version

This commit is contained in:
Bingsu
2023-04-26 21:38:15 +09:00
parent 7bc3a79785
commit 0156d7c604
3 changed files with 9 additions and 2 deletions

View File

@@ -1,5 +1,12 @@
from .__version__ import __version__
from .common import PredictOutput, get_models from .common import PredictOutput, get_models
from .mediapipe import mediapipe_predict from .mediapipe import mediapipe_predict
from .ultralytics import ultralytics_predict from .ultralytics import ultralytics_predict
__all__ = ["PredictOutput", "get_models", "mediapipe_predict", "ultralytics_predict"] __all__ = [
"__version__",
"PredictOutput",
"get_models",
"mediapipe_predict",
"ultralytics_predict",
]

1
adetailer/__version__.py Normal file
View File

@@ -0,0 +1 @@
__version__ = "23.4.0.dev0"

View File

@@ -1,6 +1,5 @@
[project] [project]
name = "adetailer" name = "adetailer"
version = "23.4.0.dev0"
description = "An object detection and auto-mask extension for stable diffusion webui." description = "An object detection and auto-mask extension for stable diffusion webui."
authors = [ authors = [
{name = "dowon", email = "ks2515@naver.com"}, {name = "dowon", email = "ks2515@naver.com"},