🐍 small `setup.py` and `README.md` updates

This commit is contained in:
SkalskiP 2023-06-06 18:01:06 +02:00
parent 95f94319f8
commit ce979216f2
3 changed files with 7 additions and 2 deletions

View File

@ -25,7 +25,7 @@
## 💻 install
Pip install the supervision package in a
[**3.10>=Python>=3.7**](https://www.python.org/) environment.
[**3.11>=Python>=3.7**](https://www.python.org/) environment.
```bash
pip install supervision

View File

@ -52,6 +52,7 @@ setuptools.setup(
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',

View File

@ -6,7 +6,11 @@ from typing import Any, Iterator, List, Optional, Tuple, Union
import cv2
import numpy as np
from supervision.detection.utils import non_max_suppression, xywh_to_xyxy, extract_yolov8_masks
from supervision.detection.utils import (
extract_yolov8_masks,
non_max_suppression,
xywh_to_xyxy,
)
from supervision.geometry.core import Position
from supervision.internal import deprecated