-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
36 lines (31 loc) · 885 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
requirements = [
"dlib", "opencv-python", "numpy", "imutils", "tqdm"
]
test_requirements = [
]
setuptools.setup(
name="FaceReco",
version="0.1.0",
author="1297rohit",
author_email="[email protected]",
description="Face Recognition package in python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/1297rohit/FaceReco",
packages=setuptools.find_packages(),
package_data={
'FaceReco': ['*']
},
install_requires=requirements,
license="MIT license",
zip_safe=False,
keywords='face_recognition',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)