Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.5.1 apple m1 install - closes #8 #10

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ detections with the default model, try using the `BACK_CAMERA`-model instead.

## Installation

The latest release version is available in [PyPI](https://pypi.org/project/face-detection-tflite/0.1.0/)
The latest release version is available in [PyPI](https://pypi.org/project/face-detection-tflite/0.5.1/)
and can be installed via:

```sh
Expand Down
2 changes: 1 addition & 1 deletion fdlite/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
from .iris_landmark import iris_roi_from_face_landmarks # noqa:F401


__version__ = '0.5.0'
__version__ = '0.5.1'
9 changes: 6 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
[metadata]
name = face-detection-tflite
version = 0.5.0
version = 0.5.1
author = Patrick Levin
author_email = [email protected]
description = A Python port of Google MediaPipe Face Detection modules
Expand Down Expand Up @@ -29,8 +29,11 @@ packages = find:
python_requires = >= 3.7
include_package_data = true
install_requires =
tensorflow>=2.3
Pillow>=8.0
tensorflow >= 2.5 ; platform_system!="Darwin"
tensorflow-deps ; platform_system=="Darwin"
tensorflow-macos ; platform_system=="Darwin"
tensorflow-metal ; platform_machine=="arm64"
Pillow >= 8.0

[flake8]
exclude =
Expand Down