Skip to content

Commit 5969348

Browse files
author
Jiaaming
committed
fix: import bugs
1 parent 2e23f5d commit 5969348

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@
77
dist
88
snap_sort/models
99
build
10-
snap_sort.egg-info/
10+
snap_sort.egg-info/
11+
cli_snapsort.egg-info/

MANIFEST.in

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
recursive-include models *
1+
include snap_sort/models/*
2+
include snap_sort/utils/*

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='cli-snapsort',
5-
version='0.1.1',
5+
version='0.1.2',
66
packages=find_packages(),
77
install_requires=[
88
"click>=8.1.0",
@@ -21,7 +21,7 @@
2121
],
2222
},
2323
package_data={
24-
'snap_sort': ['snap_sort/models/yolov8s.pt', 'snap_sort/models/all-MiniLM-L6-v2'],
24+
'snap_sort': ['models/*'],
2525
},
2626
exclude_package_data={
2727
'': ['README.md', 'snapsort.egg-info/', 'assets/', 'snap_sort/__pycache__', 'dist/', '.github/', '.idea/', '.vscode/', 'snap_sort/utils/__pycache__'],
@@ -36,6 +36,6 @@
3636
'License :: OSI Approved :: MIT License',
3737
'Operating System :: OS Independent',
3838
],
39-
python_requires='>=3.6',
39+
python_requires='>=3.8',
4040
include_package_data=True,
4141
)

snap_sort/utils/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)