-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (34 loc) · 1.2 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import setup
setup(
name="yolo-world-onnx",
version="0.1.1",
packages=["yolo_world_onnx"],
include_package_data=True,
install_requires=[
"numpy",
"opencv-python",
"onnxruntime-gpu",
"torch>=1.7.0",
"torchvision>=0.8.0",
"clip-for-odlabel",
],
author="Ziad-Algrafi",
author_email="[email protected]",
description="ONNX-YOLO is a Python package for running inference on YOLO-WORLD open-vocabulary object detection models using ONNX runtime.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/Ziad-Algrafi/yolo-world-onnx/",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.9",
setup_requires=["setuptools>=69.5.1", "wheel>=0.43.0"],
license="MIT",
)