some delete
This commit is contained in:
parent
63f888b302
commit
5880212fe6
|
@ -1,4 +1,9 @@
|
|||
*.jpg
|
||||
*.jpeg
|
||||
*.png
|
||||
*.mp4
|
||||
*.mp4
|
||||
/build
|
||||
/dist
|
||||
/opencv_webcam.egg-info
|
||||
__init__.py
|
||||
setup.py
|
||||
|
|
29
setup.py
29
setup.py
|
@ -1,29 +0,0 @@
|
|||
#!/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"]
|
||||
)
|
Loading…
Reference in New Issue