chore: Add license and remove version.py [skip ci]

This commit is contained in:
yakhyo
2025-01-09 05:28:51 +00:00
parent ad661da2f3
commit 904ba2be83
2 changed files with 6 additions and 17 deletions

View File

@@ -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",

View File

@@ -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"