Skip to content
This repository has been archived by the owner on Sep 6, 2024. It is now read-only.

Commit

Permalink
Chore: change project name
Browse files Browse the repository at this point in the history
  • Loading branch information
asheswook committed Feb 19, 2023
1 parent 6c9bf97 commit eb4adda
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
1 change: 0 additions & 1 deletion FaceFlow/__init__.py

This file was deleted.

5 changes: 5 additions & 0 deletions VisageSnap/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
__version__ = "0.1"
__author__ = "asheswook"
__license__ = "MIT"

from .main import Core, Face, From, To
6 changes: 3 additions & 3 deletions FaceFlow/main.py → VisageSnap/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ class To():
NUMBER = "Number"

# Make a class to semi-supervised the face recognition
class FaceCore():
class Core():
def __init__(self):
"""
FaceCore
--------
VisageSnap Core Class
---------------------
"""
_default_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)))
self.faces = []
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@
]

setuptools.setup(
name='FaceFlow',
version='0.1.4',
name='VisageSnap',
version='0.1',
author='Jaewook Lee',
author_email='me@jwlee.xyz',
description='Face Classification package',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/asheswook/FaceFlow',
url='https://github.com/asheswook/VisageSnap',
project_urls={
'Bug Tracker': 'https://github.com/asheswook/FaceFlow/issues',
'Bug Tracker': 'https://github.com/asheswook/VisageSnap/issues',
},
classifiers=[
'Programming Language :: Python :: 3',
Expand Down

0 comments on commit eb4adda

Please sign in to comment.