-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
39 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
from .run_flask_command import RunFlaskCommand | ||
from .run_flask_gunicorn import create_app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
-e . | ||
|
||
gunicorn | ||
flask | ||
flask_cors | ||
|
||
pylint | ||
twine | ||
unittest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from .run_flask_command import RunFlaskCommand, run |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,18 +2,21 @@ | |
from pathlib import Path | ||
|
||
extras = { | ||
"face_recognition": ["face_recognition"] | ||
"face_recognition": ["face_recognition"], | ||
"server": ["flask", "flask_cors"] | ||
} | ||
|
||
setup( | ||
name="image-searcher", | ||
version="v0.0.1", | ||
version="v0.0.2", | ||
description="Image Searcher based on semantic query understanding for your own pictures.", | ||
long_description=(Path(__file__).parent / "README.md").read_text(), | ||
long_description_content_type='text/markdown', | ||
author="Manuel Faysse", | ||
author_email='[email protected]', | ||
download_url="https://github.com/ManuelFay/ImageSearcher/archive/refs/tags/v0.0.1.tar.gz", | ||
download_url="https://github.com/ManuelFay/ImageSearcher/archive/refs/tags/v0.0.2.tar.gz", | ||
url="https://github.com/ManuelFay/ImageSearcher", | ||
keywords=['search engine', 'image', 'image search', 'CLIP'], | ||
packages=find_packages(include=["image_searcher", "image_searcher.*"]), | ||
install_requires=[ | ||
"torch", | ||
|