-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
48 lines (44 loc) · 1.31 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
requirements = [
'pyfacy_dlib_models',
'imutils',
'dlib>=19.7',
'numpy',
'scipy',
'sklearn'
]
setuptools.setup(
name="pyfacy",
version="1.0.1",
author="Manivannan",
author_email="manivannanmca2012@gmail.com",
description="Face Recognition with Machine Learning and Face Clustering",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ManivannanMurugavel/pyfacy",
packages=[
'pyfacy',
],
package_dir={'pyfacy': 'pyfacy'},
package_data={
'pyfacy': ['face_recog/*.py','face_clust/*.py']
},
install_requires=requirements,
license="MIT license",
zip_safe=False,
keywords='pyfacy',
classifiers=(
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
)