`ultralytics 8.0.130` revert 'Fix PyPI build warnings' updates (#3585)

single_channel
Glenn Jocher 1 year ago committed by GitHub
parent abb0939fe8
commit b8cc404ebf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -4,7 +4,7 @@ import re
from pathlib import Path from pathlib import Path
import pkg_resources as pkg import pkg_resources as pkg
from setuptools import find_namespace_packages, setup from setuptools import find_packages, setup
# Settings # Settings
FILE = Path(__file__).resolve() FILE = Path(__file__).resolve()
@ -34,7 +34,7 @@ setup(
'Source': 'https://github.com/ultralytics/ultralytics'}, 'Source': 'https://github.com/ultralytics/ultralytics'},
author='Ultralytics', author='Ultralytics',
author_email='hello@ultralytics.com', author_email='hello@ultralytics.com',
packages=find_namespace_packages(include=['ultralytics.*']), packages=find_packages(), # required
include_package_data=True, include_package_data=True,
install_requires=REQUIREMENTS, install_requires=REQUIREMENTS,
extras_require={ extras_require={

@ -1,6 +1,6 @@
# Ultralytics YOLO 🚀, AGPL-3.0 license # Ultralytics YOLO 🚀, AGPL-3.0 license
__version__ = '8.0.129' __version__ = '8.0.130'
from ultralytics.hub import start from ultralytics.hub import start
from ultralytics.vit.rtdetr import RTDETR from ultralytics.vit.rtdetr import RTDETR

Loading…
Cancel
Save