faceswitch 0.2.2__tar.gz → 0.3.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. {faceswitch-0.2.2/src/faceswitch.egg-info → faceswitch-0.3.2}/PKG-INFO +2 -4
  2. {faceswitch-0.2.2 → faceswitch-0.3.2}/README.md +1 -3
  3. {faceswitch-0.2.2 → faceswitch-0.3.2}/pyproject.toml +1 -1
  4. {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/__init__.py +1 -1
  5. {faceswitch-0.2.2 → faceswitch-0.3.2/src/faceswitch.egg-info}/PKG-INFO +2 -4
  6. {faceswitch-0.2.2 → faceswitch-0.3.2}/LICENSE +0 -0
  7. {faceswitch-0.2.2 → faceswitch-0.3.2}/setup.cfg +0 -0
  8. {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/core/__init__.py +0 -0
  9. {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/core/interfaces.py +0 -0
  10. {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/core/types.py +0 -0
  11. {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/detectors/__init__.py +0 -0
  12. {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/detectors/hog/__init__.py +0 -0
  13. {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/detectors/hog/config.py +0 -0
  14. {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/detectors/hog/detector.py +0 -0
  15. {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/detectors/retinaface/__init__.py +0 -0
  16. {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/detectors/retinaface/config.py +0 -0
  17. {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/detectors/retinaface/detector.py +0 -0
  18. {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/detectors/yolo/__init__.py +0 -0
  19. {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/detectors/yolo/config.py +0 -0
  20. {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/detectors/yolo/detector.py +0 -0
  21. {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/py.typed +0 -0
  22. {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch.egg-info/SOURCES.txt +0 -0
  23. {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch.egg-info/dependency_links.txt +0 -0
  24. {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch.egg-info/requires.txt +0 -0
  25. {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch.egg-info/top_level.txt +0 -0
  26. {faceswitch-0.2.2 → faceswitch-0.3.2}/tests/test_hog_detector.py +0 -0
  27. {faceswitch-0.2.2 → faceswitch-0.3.2}/tests/test_public_api.py +0 -0
  28. {faceswitch-0.2.2 → faceswitch-0.3.2}/tests/test_retinaface_detector.py +0 -0
  29. {faceswitch-0.2.2 → faceswitch-0.3.2}/tests/test_yolo_detector.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: faceswitch
3
- Version: 0.2.2
3
+ Version: 0.3.2
4
4
  Summary: Simple multi-model face detection library
5
5
  Author: FaceSwitch Contributors
6
6
  License-Expression: MIT
@@ -85,8 +85,6 @@ pip install faceswitch
85
85
  | YOLO | Deep learning detector (more accurate, works best with GPU) | `pip install "faceswitch[yolo]"` |
86
86
  | RetinaFace | High-accuracy ResNet detector (best for difficult angles and small faces) | `pip install "faceswitch[retinaface]"` |
87
87
 
88
- | RetinaFace | Deep learning face detector using ResNet+FPN with multi-scale anchors for high-accuracy detection. | `pip install "faceswitch[retinaface]"` |
89
-
90
88
  **Or install everything at once:**
91
89
 
92
90
  ```bash
@@ -215,4 +213,4 @@ Yes, as long as the image is a NumPy array with shape `(height, width, 3)` and `
215
213
 
216
214
  FaceSwitch is actively maintained. New detectors are added regularly — run `pip install --upgrade faceswitch` to get the latest.
217
215
 
218
- Current version: **0.2.2** | [GitHub](https://github.com/game-sys/FaceSwitch) | [PyPI](https://pypi.org/project/faceswitch/)
216
+ Current version: **0.3.2** | [GitHub](https://github.com/game-sys/FaceSwitch) | [PyPI](https://pypi.org/project/faceswitch/)
@@ -44,8 +44,6 @@ pip install faceswitch
44
44
  | YOLO | Deep learning detector (more accurate, works best with GPU) | `pip install "faceswitch[yolo]"` |
45
45
  | RetinaFace | High-accuracy ResNet detector (best for difficult angles and small faces) | `pip install "faceswitch[retinaface]"` |
46
46
 
47
- | RetinaFace | Deep learning face detector using ResNet+FPN with multi-scale anchors for high-accuracy detection. | `pip install "faceswitch[retinaface]"` |
48
-
49
47
  **Or install everything at once:**
50
48
 
51
49
  ```bash
@@ -174,4 +172,4 @@ Yes, as long as the image is a NumPy array with shape `(height, width, 3)` and `
174
172
 
175
173
  FaceSwitch is actively maintained. New detectors are added regularly — run `pip install --upgrade faceswitch` to get the latest.
176
174
 
177
- Current version: **0.2.2** | [GitHub](https://github.com/game-sys/FaceSwitch) | [PyPI](https://pypi.org/project/faceswitch/)
175
+ Current version: **0.3.2** | [GitHub](https://github.com/game-sys/FaceSwitch) | [PyPI](https://pypi.org/project/faceswitch/)
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "faceswitch"
7
- version = "0.2.2"
7
+ version = "0.3.2"
8
8
  description = "Simple multi-model face detection library"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -13,7 +13,7 @@ try:
13
13
  except ImportError:
14
14
  pass
15
15
 
16
- __version__ = "0.2.2"
16
+ __version__ = "0.3.2"
17
17
 
18
18
  try:
19
19
  from faceswitch.detectors.retinaface import RetinaFaceDetector, RetinaFaceDetectorConfig # noqa: F401
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: faceswitch
3
- Version: 0.2.2
3
+ Version: 0.3.2
4
4
  Summary: Simple multi-model face detection library
5
5
  Author: FaceSwitch Contributors
6
6
  License-Expression: MIT
@@ -85,8 +85,6 @@ pip install faceswitch
85
85
  | YOLO | Deep learning detector (more accurate, works best with GPU) | `pip install "faceswitch[yolo]"` |
86
86
  | RetinaFace | High-accuracy ResNet detector (best for difficult angles and small faces) | `pip install "faceswitch[retinaface]"` |
87
87
 
88
- | RetinaFace | Deep learning face detector using ResNet+FPN with multi-scale anchors for high-accuracy detection. | `pip install "faceswitch[retinaface]"` |
89
-
90
88
  **Or install everything at once:**
91
89
 
92
90
  ```bash
@@ -215,4 +213,4 @@ Yes, as long as the image is a NumPy array with shape `(height, width, 3)` and `
215
213
 
216
214
  FaceSwitch is actively maintained. New detectors are added regularly — run `pip install --upgrade faceswitch` to get the latest.
217
215
 
218
- Current version: **0.2.2** | [GitHub](https://github.com/game-sys/FaceSwitch) | [PyPI](https://pypi.org/project/faceswitch/)
216
+ Current version: **0.3.2** | [GitHub](https://github.com/game-sys/FaceSwitch) | [PyPI](https://pypi.org/project/faceswitch/)
File without changes
File without changes