-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (62 loc) · 2.1 KB
/
setup.py
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
from setuptools import setup, find_packages
def get_long_description(path):
"""Opens and fetches text of long descrition file."""
with open(path, 'r') as f:
return f.read()
attrs = dict(
name='face_detector_plus',
version="1.0.1",
packages=find_packages(exclude=('test',)),
long_description=get_long_description('README.md'),
description='Light weight face detector high-level client with multiple detection techniques.',
long_description_content_type='text/markdown',
author="Huseyin Das",
author_email='[email protected]',
url='https://github.com/huseyindas/face-detector-plus',
license='Apache',
python_requires='>=3.9',
setup_requires=[
"cmake==3.21.1.post1",
],
install_requires=[
"dlib==19.24.5",
"onnxoptimizer==0.3.13",
"onnxruntime==1.18.1",
"opencv-contrib-python==4.10.0.84",
"tqdm==4.66.5",
"requests==2.32.3"
],
classifiers=[
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Widget Sets',
'License :: OSI Approved :: Apache Software License',
],
project_urls={
'Bug Reports': 'https://github.com/huseyindas/face-detector-plus/issues',
'Source': 'https://github.com/huseyindas/face-detector-plus',
'Documentation': 'https://github.com/huseyindas/face-detector-plus#documentation',
},
keywords=[
'machine learning',
'face',
'detector',
'face detection',
'CNN',
'dlib',
'ultrafast',
'HOG',
'caffemodel',
],
include_package_data=True,
)
setup(**attrs)