mirror of
https://github.com/THU-MIG/yolov10.git
synced 2025-07-08 06:34:23 +08:00
Fix PyPI build warnings (#3565)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
parent
e33d6522ab
commit
6a832cdcd3
4
setup.py
4
setup.py
@ -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_packages, setup
|
from setuptools import find_namespace_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_packages(), # required
|
packages=find_namespace_packages(include=['ultralytics.*']),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
install_requires=REQUIREMENTS,
|
install_requires=REQUIREMENTS,
|
||||||
extras_require={
|
extras_require={
|
||||||
|
Loading…
x
Reference in New Issue
Block a user