-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (53 loc) · 1.19 KB
/
pyproject.toml
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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.hatch.build.targets.wheel]
packages = ["src/rescueclip"]
[tool.hatch.metadata]
allow-direct-references = true
# [pytest]
# testpaths = "tests"
# [tool.pytest.ini_options]
# addopts = [
# "--import-mode=importlib",
# ]
[tool.black]
line-length = 88
[tool.isort]
force_grid_wrap = 0
include_trailing_comma = true
multi_line_output = 3
profile = "black"
[project]
authors = [
{name = "Atharva Kale", email = "[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"python-dotenv>=1.0.1",
"clip@git+https://github.com/openai/CLIP.git#egg=main",
"open_clip_torch>=2.24.0",
"tqdm>=4.67.1",
]
description = "Generate, store and query image embeddings locally"
name = "rescueclip"
readme = "README.md"
requires-python = ">=3.12"
version = "0.0.1"
[project.optional-dependencies]
dev = [
"black>=23.11.0",
"isort>=5.12.0",
"pytest>=8.3.4",
"mypy>=1.14.1",
"pytest-cov>=6.0.0",
"snakeviz>=2.2.2",
"line_profiler>=4.2.0",
"memory-profiler>=0.61.0",
"seaborn>=0.13.2",
"scipy>=1.15.1"
]