-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
52 lines (49 loc) · 1.98 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
"""The setup script"""
from setuptools import setup, find_packages
AUTHOR = 'Antonio C. Nazare Jr.'
EMAIL = '[email protected]'
VERSION = '0.2.1'
setup(
name='fdet',
version=VERSION,
author=AUTHOR,
author_email=EMAIL,
maintainer=AUTHOR,
maintainer_email=EMAIL,
url='http://github.com/acnazarejr/fdet',
download_url='http://github.com/acnazarejr/fdet',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Other Audience',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: Microsoft :: Windows :: Windows 7',
'Operating System :: Microsoft :: Windows :: Windows 8',
'Operating System :: Microsoft :: Windows :: Windows 8.1',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries'
],
description='An easy to use face detection module based on MTCNN and RetinaFace algorithms.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown', # This is important!
keywords='face recognition detection biometry',
packages=find_packages(),
zip_safe=False,
python_requires='>=3.5',
install_requires=[line for line in open('requirements.txt').read().split('\n') if line != ''],
entry_points={
'console_scripts': ['fdet=fdet.cli.main:main']
}
)