-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.cfg
41 lines (39 loc) · 1.23 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- coding: utf-8 -*-
[metadata]
name = face-detection-tflite
version = 0.6.0
author = Patrick Levin
author_email = vertical-pink@protonmail.com
description = A Python port of Google MediaPipe Face Detection modules
long_description = file: README.md
long_description_content_type = text/markdown
keywords = AI, face-detection, tensorflow, tflite, face-landmarks, iris-detection, face-mesh
url = https://github.com/patlevin/face-detection-tflite
project_urls =
Bug Tracker = https://github.com/patlevin/face-detection-tflite/issues
license = MIT
license_file = LICENSE
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Development Status :: 4 - Beta
Intended Audience :: Developers
Topic :: Multimedia :: Graphics
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Scientific/Engineering :: Image Recognition
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages = find:
python_requires = >= 3.8
include_package_data = true
install_requires =
tensorflow>=2.3
Pillow>=10.3.0
[flake8]
exclude =
.eggs,
.git,
__pycache__,
build,
dist