diff --git a/.gitignore b/.gitignore index e993565..327d5d7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,9 @@ *.jpg *.jpeg *.png -*.mp4 \ No newline at end of file +*.mp4 +/build +/dist +/opencv_webcam.egg-info +__init__.py +setup.py diff --git a/__init__.py b/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/setup.py b/setup.py deleted file mode 100644 index d16f8cb..0000000 --- a/setup.py +++ /dev/null @@ -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"] -) \ No newline at end of file