Skip to content

Commit

Permalink
new launch 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rishi23root committed Apr 22, 2024
1 parent 984d4e4 commit e192ca9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 51 deletions.
10 changes: 10 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,11 @@ More Usage Examples
kwargs = all_actions()
.. figure:: https://rishi23root.github.io/opencv_wrap/static/Screenshot-20240422075128-1152x666.png
:alt: image

image

..
**Example 3** : Reading video and detecting Pose in each frame
Expand Down Expand Up @@ -279,6 +284,11 @@ More Usage Examples
all_actions()
.. figure:: https://rishi23root.github.io/opencv_wrap/static/Screenshot%20from%202024-04-22%2007-42-13.png
:alt: image

image

..
**Example 4** : Reading video and saving each frame in a folder
Expand Down
53 changes: 2 additions & 51 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# flake8: noqa: E501
from setuptools import setup, find_packages

VERSION = "0.1.1"
VERSION = "0.1.2"
DESCRIPTION = "Working with opencv can be quite a hussel, a lot of boiler code, nested functions for specific use cases, this package is designed to make it easier to work with opencv, while focusing on the main task in hand. best for prototyping and quick testing. second part is speed and performance, this package is designed to be fast and efficient."

setup(
Expand All @@ -24,55 +24,6 @@
"Programming Language :: Python :: 3.10",
],
packages=find_packages(),
install_requires=[
"absl-py>=2.1.0",
"attrs>=23.2.0",
"cffi>=1.16.0",
"contourpy>=1.2.1",
"cycler>=0.12.1",
"filelock>=3.13.4",
"flatbuffers>=24.3.25",
"fonttools>=4.51.0",
"fsspec>=2024.3.1",
"jax>=0.4.26",
"jaxlib>=0.4.26",
"Jinja2>=3.1.3",
"kiwisolver>=1.4.5",
"MarkupSafe>=2.1.5",
"matplotlib>=3.8.4",
"mediapipe>=0.10.11",
"ml-dtypes>=0.4.0",
"mpmath>=1.3.0",
"networkx>=3.3",
"numpy>=1.26.4",
"nvidia-cublas-cu12>=12.1.3.1",
"nvidia-cuda-cupti-cu12>=12.1.105",
"nvidia-cuda-nvrtc-cu12>=12.1.105",
"nvidia-cuda-runtime-cu12>=12.1.105",
"nvidia-cudnn-cu12>=8.9.2.26",
"nvidia-cufft-cu12>=11.0.2.54",
"nvidia-curand-cu12>=10.3.2.106",
"nvidia-cusolver-cu12>=11.4.5.107",
"nvidia-cusparse-cu12>=12.1.0.106",
"nvidia-nccl-cu12>=2.19.3",
"nvidia-nvjitlink-cu12>=12.4.127",
"nvidia-nvtx-cu12>=12.1.105",
"opencv-contrib-python>=4.9.0.80",
"opencv-python>=4.9.0.80",
"opt-einsum>=3.3.0",
"packaging>=24.0",
"pillow>=10.3.0",
"protobuf>=3.20.3",
"pycparser>=2.22",
"pyparsing>=3.1.2",
"python-dateutil>=2.9.0.post0",
"scipy>=1.13.0",
"six>=1.16.0",
"sounddevice>=0.4.6",
"sympy>=1.12",
"torch>=2.2.2",
"triton>=2.2.0",
"typing_extensions>=4.11.0",
],
install_requires=['absl-py>=2.1.0', 'attrs>=23.2.0', 'cffi>=1.16.0', 'contourpy>=1.2.1', 'cycler>=0.12.1', 'filelock>=3.13.4', 'flatbuffers>=24.3.25', 'fonttools>=4.51.0', 'fsspec>=2024.3.1', 'jax>=0.4.26', 'jaxlib>=0.4.26', 'Jinja2>=3.1.3', 'kiwisolver>=1.4.5', 'MarkupSafe>=2.1.5', 'matplotlib>=3.8.4', 'mediapipe>=0.10.11', 'ml-dtypes>=0.4.0', 'mpmath>=1.3.0', 'networkx>=3.3', 'numpy>=1.26.4', 'nvidia-cublas-cu12>=12.1.3.1', 'nvidia-cuda-cupti-cu12>=12.1.105', 'nvidia-cuda-nvrtc-cu12>=12.1.105', 'nvidia-cuda-runtime-cu12>=12.1.105', 'nvidia-cudnn-cu12>=8.9.2.26', 'nvidia-cufft-cu12>=11.0.2.54', 'nvidia-curand-cu12>=10.3.2.106', 'nvidia-cusolver-cu12>=11.4.5.107', 'nvidia-cusparse-cu12>=12.1.0.106', 'nvidia-nccl-cu12>=2.19.3', 'nvidia-nvjitlink-cu12>=12.4.127', 'nvidia-nvtx-cu12>=12.1.105', 'opencv-contrib-python>=4.9.0.80', 'opencv-python>=4.9.0.80', 'opt-einsum>=3.3.0', 'packaging>=24.0', 'pillow>=10.3.0', 'protobuf>=3.20.3', 'pycparser>=2.22', 'pyparsing>=3.1.2', 'python-dateutil>=2.9.0.post0', 'scipy>=1.13.0', 'six>=1.16.0', 'sounddevice>=0.4.6', 'sympy>=1.12', 'torch>=2.2.2', 'triton>=2.2.0', 'typing_extensions>=4.11.0'],
zip_safe=False,
)

0 comments on commit e192ca9

Please sign in to comment.