Skip to content

Commit afec09f

Browse files
author
ManuelFay
committed
Package info
1 parent 1b9c102 commit afec09f

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ It is surprisingly precise and is able to find images given complex queries. For
66
the Medium blogpost [here](https://medium.com/@manuelfaysse/building-a-powerful-image-search-engine-for-your-pictures-using-deep-learning-16d06df10385?source=friends_link&sk=ca5130cb63a1fcb3a3e3f54ff494e56b).
77

88
The added functionality of classifying pictures depending on the persons portrayed is implemented
9-
with the `face_recognition` library.
9+
with the `face_recognition` library. Several filters are also available, enabling you to find your
10+
group pictures, screenshots, etc...
1011

1112
## Setup
1213

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
from setuptools import setup, find_packages
2+
from pathlib import Path
23

34
extras = {
45
"face_recognition": ["face_recognition"]
56
}
67

78
setup(
8-
name="Image-Searcher",
9+
name="image-searcher",
910
version="v0.0.1",
10-
description="Image Searcher module",
11+
description="Image Searcher based on semantic query understanding for your own pictures.",
12+
long_description=(Path(__file__).parent / "README.md").read_text(),
13+
long_description_content_type='text/markdown',
1114
author="Manuel Faysse",
1215
author_email='[email protected]',
1316
download_url="https://github.com/ManuelFay/ImageSearcher/archive/refs/tags/v0.0.1.tar.gz",

0 commit comments

Comments
 (0)