ultralytics 8.0.180 PyPI fixes for YAML and JPG files (#4914)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
parent
c17106db1f
commit
e7401f5872
3 changed files with 6 additions and 3 deletions
4
setup.py
4
setup.py
|
|
@ -3,7 +3,7 @@
|
|||
import re
|
||||
from pathlib import Path
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
from setuptools import setup
|
||||
|
||||
# Settings
|
||||
FILE = Path(__file__).resolve()
|
||||
|
|
@ -52,7 +52,7 @@ setup(
|
|||
'Source': 'https://github.com/ultralytics/ultralytics'},
|
||||
author='Ultralytics',
|
||||
author_email='hello@ultralytics.com',
|
||||
packages=find_packages(), # required
|
||||
packages=['ultralytics'] + [str(x) for x in Path('ultralytics').rglob('*/') if x.is_dir() and '__' not in str(x)],
|
||||
package_data={
|
||||
'': ['*.yaml'],
|
||||
'ultralytics.assets': ['*.jpg']},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue