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 +10 -0
- ahmercv-0.1.0/ahmercv.egg-info/PKG-INFO +10 -0
- ahmercv-0.1.0/ahmercv.egg-info/SOURCES.txt +6 -0
- ahmercv-0.1.0/ahmercv.egg-info/dependency_links.txt +1 -0
- ahmercv-0.1.0/ahmercv.egg-info/requires.txt +2 -0
- ahmercv-0.1.0/ahmercv.egg-info/top_level.txt +1 -0
- ahmercv-0.1.0/setup.cfg +4 -0
- ahmercv-0.1.0/setup.py +13 -0
ahmercv-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
ahmercv-0.1.0/setup.cfg
ADDED
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
|
+
)
|