From 904ba2be83705ed11d23f7d8e1f36d52d5d192b7 Mon Sep 17 00:00:00 2001 From: yakhyo Date: Thu, 9 Jan 2025 05:28:51 +0000 Subject: [PATCH] chore: Add license and remove version.py [skip ci] --- uniface/__init__.py | 8 ++++++-- uniface/version.py | 15 --------------- 2 files changed, 6 insertions(+), 17 deletions(-) delete mode 100644 uniface/version.py diff --git a/uniface/__init__.py b/uniface/__init__.py index e5c1756..47c1479 100644 --- a/uniface/__init__.py +++ b/uniface/__init__.py @@ -11,17 +11,21 @@ # See the License for the specific language governing permissions and # limitations under the License. +__license__ = "MIT" +__author__ = "Yakhyokhuja Valikhujaev" +__version__ = "0.1.6" + from uniface.retinaface import RetinaFace from uniface.log import Logger from uniface.model_store import verify_model_weights -from uniface.version import __version__, __author__ from uniface.alignment import face_alignment from uniface.visualization import draw_detections __all__ = [ "__version__", - "__author__" + "__author__", + "__license__", "RetinaFace", "Logger", "verify_model_weights", diff --git a/uniface/version.py b/uniface/version.py deleted file mode 100644 index 52c9340..0000000 --- a/uniface/version.py +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright 2025 Yakhyokhuja Valikhujaev -# -# Licensed under the MIT License. -# You may obtain a copy of the License at -# -# https://opensource.org/licenses/MIT -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -__version__ = "0.1.6" -__author__ = "Yakhyokhuja Valikhujaev"