diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..d16f8cb --- /dev/null +++ b/setup.py @@ -0,0 +1,29 @@ +#!/usr/bin/env python +#-*- coding:utf-8 -*- + +############################################# +# File Name: setup.py +# Author: Yifu Zeng(曾逸夫) +# Mail: zyfiy1314@163.com +# Created Time: 2021-12-26 +############################################# + +from setuptools import setup, find_packages + +setup( + name = "opencv-webcam", + version = "0.1.0", + keywords = ("opencv","webcam"), + description = "webcam opencv script", + long_description = "This is a webcam opencv script, this script can be used to capture video frames.", + license = "GPL-3.0 Licence", + + url = "https://gitee.com/CV_Lab/opencv-webcam", + author = "Yifu Zeng", + author_email = "zyfiy1314@163.com", + + packages = find_packages(), + include_package_data = True, + platforms = "any", + install_requires = ["opencv-python"] +) \ No newline at end of file