-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (24 loc) · 848 Bytes
/
pyproject.toml
File metadata and controls
30 lines (24 loc) · 848 Bytes
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
[project]
name = "clip-image-deduper"
version = "0.0.0a0"
description = "Scripts for image deduplication using CLIP model."
authors = [{name = "Neo_Chen", email = "chenkolei@gmail.com"}]
dynamic = ["dependencies"]
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
# only search for modules in the src directory
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 132
target-version = ['py311']
[tool.isort]
profile = "black"
[project.scripts]
clip-image-encoding-test = "clip_image_deduper.clip_encoding:main"
clip-image-deduper-db-test = "clip_image_deduper.db_processing:main"
clip-image-deduper = "clip_image_deduper.main:main"
clip-image-import-deduper= "clip_image_deduper.dedupe_import_dir:main"