-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from acnazarejr/readme
Fix the setupy.py packages bug
- Loading branch information
Showing
4 changed files
with
55 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
__author__ = 'Antonio C. Nazare Jr.' | ||
__email__ = '[email protected]' | ||
__version__ = '0.2.0' | ||
__version__ = '0.2.1' | ||
|
||
from fdet.mtcnn import MTCNN | ||
from fdet.retinaface import RetinaFace | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
"""The setup script""" | ||
|
||
from setuptools import setup | ||
from setuptools import setup, find_packages | ||
|
||
AUTHOR = 'Antonio C. Nazare Jr.' | ||
EMAIL = '[email protected]' | ||
VERSION = '0.2.0' | ||
VERSION = '0.2.1' | ||
|
||
setup( | ||
name='fdet', | ||
|
@@ -42,7 +42,7 @@ | |
long_description=open('README.md').read(), | ||
long_description_content_type='text/markdown', # This is important! | ||
keywords='face recognition detection biometry', | ||
packages=['fdet'], | ||
packages=find_packages(), | ||
zip_safe=False, | ||
python_requires='>=3.5', | ||
install_requires=[line for line in open('requirements.txt').read().split('\n') if line != ''], | ||
|