22 lines
501 B
TOML
22 lines
501 B
TOML
[tool.poetry]
|
|
name = "image-search"
|
|
version = "0.1.0"
|
|
description = "Image Search with Supabase Vector"
|
|
authors = ["thorwebdev <thor@supabase.io>"]
|
|
readme = "README.md"
|
|
packages = [{include = "image_search"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
sentence-transformers = "^2.2.2"
|
|
vecs = "^0.2.4"
|
|
matplotlib = "^3.7.1"
|
|
|
|
[tool.poetry.scripts]
|
|
seed = "image_search.main:seed"
|
|
search = "image_search.main:search"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|