-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (25 loc) · 959 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
import setuptools
with open('Description.rst') as f:
description = f.read()
setuptools.setup(
author="Jash Shah",
author_email="[email protected]",
name='detect_mask',
license="MIT",
description='Python Package for detecting masks in the input Photos ,Pull out the camera for real time mask detection',
version='v0.7.0',
long_description=description,
url='https://github.com/Jash271/Detect_Mask',
packages=setuptools.find_packages(),
python_requires=">=3.6.8",
install_requires=['opencv-python'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
],
include_package_data=True,
)