ahmercv 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
ahmercv-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: ahmercv
3
+ Version: 0.1.0
4
+ Summary: A simple computer vision library for hand tracking
5
+ Author: Ahmer
6
+ Requires-Dist: opencv-python
7
+ Requires-Dist: cvzone
8
+ Dynamic: author
9
+ Dynamic: requires-dist
10
+ Dynamic: summary
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: ahmercv
3
+ Version: 0.1.0
4
+ Summary: A simple computer vision library for hand tracking
5
+ Author: Ahmer
6
+ Requires-Dist: opencv-python
7
+ Requires-Dist: cvzone
8
+ Dynamic: author
9
+ Dynamic: requires-dist
10
+ Dynamic: summary
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ ahmercv.egg-info/PKG-INFO
3
+ ahmercv.egg-info/SOURCES.txt
4
+ ahmercv.egg-info/dependency_links.txt
5
+ ahmercv.egg-info/requires.txt
6
+ ahmercv.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ opencv-python
2
+ cvzone
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
ahmercv-0.1.0/setup.py ADDED
@@ -0,0 +1,13 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="ahmercv",
5
+ version="0.1.0",
6
+ author="Ahmer",
7
+ description="A simple computer vision library for hand tracking",
8
+ packages=find_packages(),
9
+ install_requires=[
10
+ "opencv-python",
11
+ "cvzone",
12
+ ],
13
+ )