Spaces:
Running
Running
File size: 567 Bytes
db346ea | 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 | """
项目设置脚本
用于在PyCharm中配置项目环境
"""
from setuptools import setup, find_packages
setup(
name='yolov8-object-detection',
version='1.0.0',
description='YOLOv8目标检测 - 深度学习期末综合设计',
author='',
packages=find_packages(),
install_requires=[
'torch>=2.0.0',
'torchvision>=0.15.0',
'opencv-python>=4.8.0',
'numpy>=1.24.0',
'matplotlib>=3.7.0',
'tqdm>=4.65.0',
'Pillow>=10.0.0',
],
python_requires='>=3.8',
)
|