Skip to content

Commit

Permalink
pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
PeizhiYan committed Sep 19, 2024
1 parent 7726d37 commit 8afc2c4
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 1 deletion.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
## Usage

```
from mp2dlib import convert_landmarks_mediapipe_to_dlib
from mediapipe2dlib.mp2dlib import convert_landmarks_mediapipe_to_dlib
# Convert Mediapipe dense landmarks to Dlib sparse landmarks
lmks_mp2dlib = convert_landmarks_mediapipe_to_dlib(lmks_mp)
Expand Down
Binary file added mediapipe2dlib/.DS_Store
Binary file not shown.
Empty file added mediapipe2dlib/__init__.py
Empty file.
File renamed without changes.
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
25 changes: 25 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[metadata]
name = mediapipe2dlib
version = 1.0
author = Peizhi Yan
description = "A utility to convert Mediapipe landmarks to Dlib landmarks"
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/PeizhiYan/Mediapipe_2_Dlib_Landmarks/mediapipe2dlib
project_urls =
Bug Tracker = https://github.com/PeizhiYan/Mediapipe_2_Dlib_Landmarks/mediapipe2dlib/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent

[options]
package_dir =
= mediapipe2dlib
packages = find:
python_requires = >=3.6
install_requires =
numpy

[options.packages.find]
where = mediapipe2dlib

0 comments on commit 8afc2c4

Please sign in to comment.