-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (57 loc) · 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (57 loc) · 1.57 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[project]
name = "muselens"
version = "0.1.2"
description = "A local-first multimodal image search and organization system."
readme = "README_EN.md"
license = {file = "LICENSE"}
authors = [{name = "joyboy-type"}]
requires-python = ">=3.10"
keywords = [
"multimodal-search",
"image-retrieval",
"siglip2",
"fastapi",
"react",
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Graphics",
]
dependencies = [
"fastapi>=0.115,<1",
"numpy>=2,<3",
"pillow>=10,<13",
"python-multipart>=0.0.9,<1",
"torch>=2.3,<3",
"transformers>=4.50,<6",
"uvicorn[standard]>=0.30,<1",
]
[project.optional-dependencies]
dev = ["httpx>=0.27,<1", "pytest>=8,<10", "ruff>=0.6,<0.16"]
faiss = ["faiss-cpu>=1.14,<2"]
precision = [
"qwen-vl-utils>=0.0.14,<1",
"torchvision>=0.20,<1",
]
[project.urls]
Homepage = "https://sinbaby-muselens.ms.show"
Repository = "https://github.com/joyboy-type/MuseLens"
Documentation = "https://github.com/joyboy-type/MuseLens#readme"
Changelog = "https://github.com/joyboy-type/MuseLens/blob/main/CHANGELOG.md"
Issues = "https://github.com/joyboy-type/MuseLens/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py310"