From 62b290c658c36360ae92fd689ab9d2a262d90a3a Mon Sep 17 00:00:00 2001 From: "Viet-Anh NGUYEN (Andrew)" Date: Sun, 24 Nov 2024 10:47:18 +0700 Subject: [PATCH] update requirements --- README.md | 7 +++++-- requirements-gpu.txt | 18 +++++++++--------- requirements.txt | 18 +++++++++--------- setup.py | 12 ++++++------ 4 files changed, 29 insertions(+), 26 deletions(-) diff --git a/README.md b/README.md index 5d7e22e..0dc8a97 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- AnyLabeling + AnyLabeling

🌟 AnyLabeling 🌟

Effortless data labeling with AI support from YOLO and Segment Anything!

AnyLabeling = LabelImg + Labelme + Improved UI + Auto-labeling

@@ -14,7 +14,10 @@ [![Documentation](https://img.shields.io/badge/Read-Documentation-green)](https://anylabeling.nrl.ai/) [![Follow](https://img.shields.io/badge/+Follow-vietanhdev-blue)]([[https://anylabeling.nrl.ai/](https://twitter.com/vietanhdev)](https://twitter.com/vietanhdev)) -> +⭐ Follow [vietanhdev](https://twitter.com/vietanhdev) for project updates. +[![AnyLearning-Banner](https://github.com/user-attachments/assets/c2de3534-3e04-439b-bdca-19f6fcb9fc61)](https://anylearning.nrl.ai/) + +[![ai-flow 62b3c222](https://github.com/user-attachments/assets/a47a0eea-ec59-4c59-9733-737b1977e56b)](https://anylearning.nrl.ai/) + AnyLabeling diff --git a/requirements-gpu.txt b/requirements-gpu.txt index 8db9d66..3ea4adb 100644 --- a/requirements-gpu.txt +++ b/requirements-gpu.txt @@ -1,10 +1,10 @@ -opencv-contrib-python-headless==4.7.0.72 +opencv-contrib-python-headless>=4.7.0.72 PyQt5==5.15.7 -imgviz==1.5.0 -natsort==8.1.0 -termcolor==1.1.0 -PyYAML==6.0.1 -onnx==1.16.1 -onnxruntime-gpu==1.18.1 -qimage2ndarray==1.10.0 -darkdetect==0.8.0 +imgviz>=1.5.0 +natsort>=8.1.0 +termcolor>=1.1.0 +PyYAML>=6.0.1 +onnx>=1.16.1 +onnxruntime-gpu>=1.18.1 +qimage2ndarray>=1.10.0 +darkdetect>=0.8.0 diff --git a/requirements.txt b/requirements.txt index ceb8832..cd3bea0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,10 +1,10 @@ -opencv-contrib-python-headless==4.7.0.72 +opencv-contrib-python-headless>=4.7.0.72 PyQt5==5.15.7 -imgviz==1.5.0 -natsort==8.1.0 -termcolor==1.1.0 -PyYAML==6.0.1 -onnx==1.16.1 -onnxruntime==1.18.1 -qimage2ndarray==1.10.0 -darkdetect==0.8.0 +imgviz>=1.5.0 +natsort>=8.1.0 +termcolor>=1.1.0 +PyYAML>=6.0.1 +onnx>=1.16.1 +onnxruntime>=1.18.1 +qimage2ndarray>=1.10.0 +darkdetect>=0.8.0 diff --git a/setup.py b/setup.py index d6830dd..caded5a 100644 --- a/setup.py +++ b/setup.py @@ -44,15 +44,15 @@ def get_install_requires(): install_requires = [ "imgviz>=0.11", "natsort>=7.1.0", - "numpy==1.26.4", + "numpy>=2.1.3", "Pillow>=2.8", "PyYAML==6.0.1", - "termcolor==1.1.0", - "opencv-python-headless==4.7.0.72", + "termcolor>=1.1.0", + "opencv-python-headless>=4.7.0.72", 'PyQt5>=5.15.7; platform_system != "Darwin"', - "onnx==1.16.1", - "qimage2ndarray==1.10.0", - "darkdetect==0.8.0", + "onnx>=1.16.1", + "qimage2ndarray>=1.10.0", + "darkdetect>=0.8.0", ] # Add onnxruntime-gpu if GPU is preferred