-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 1.07 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (39 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "vgrep"
version = "0.1.0.dev0"
description = "Semantic grep for your local files. Search photos and documents by meaning, entirely on-device."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Ryan Abraham" }]
keywords = ["semantic-search", "cli", "embeddings", "local-first"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
dependencies = [
"numpy>=1.24",
"pillow>=10.0",
"pillow-heif>=0.15", # iPhone HEIC support
"torch>=2.1",
"transformers>=4.40",
"rich>=13.0",
"typer>=0.12",
]
[project.optional-dependencies]
dev = ["pytest>=8.0", "ruff>=0.4", "mypy>=1.10"]
[project.scripts]
vgrep = "vgrep.cli:run"
[tool.hatch.build.targets.wheel]
packages = ["src/vgrep"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.pytest.ini_options]
testpaths = ["tests"]