pypi install

This commit is contained in:
13339479676 2021-12-29 17:52:33 +08:00
parent 4eee91379d
commit 63f888b302
2 changed files with 29 additions and 0 deletions

0
__init__.py Normal file
View File

29
setup.py Normal file
View File

@ -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"]
)