-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 1.1 KB
/
setup.py
File metadata and controls
33 lines (30 loc) · 1.1 KB
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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent
long_description = (here / "README.md").read_text()
VERSION = '0.5.3'
DESCRIPTION = 'Coumputer Vision helping Library'
setup(
name="cvlearn",
version=VERSION,
author="ErrorCode (Tanay)",
author_email="codingkaku@gmail.com",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(),
install_requires=['numpy', 'opencv-python', 'mediapipe'],
keywords=[
'python', 'opencv', 'computer vision', 'cv2', 'image processing',
'mediapipe', 'pose detection', 'face mesh', 'hand tracking', 'cvlearn'
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.x",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Multimedia :: Video",
]
)