-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (37 loc) · 1014 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (37 loc) · 1014 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pickinsta"
version = "1.1.1"
description = "Instagram image selection pipeline."
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "Renato Bonomini" }]
dependencies = [
"Pillow>=12.3.0",
"opencv-python-headless>=5.0.0.93",
"numpy>=2.5.1; python_version < '3.11'",
"numpy>=2.5.1; python_version >= '3.11'",
"ImageHash>=4.3.2",
]
[project.optional-dependencies]
dev = ["pytest>=9.1.1", "ruff>=0.15.21", "pre-commit>=4.6.0"]
clip = ["transformers>=5.13.0", "torch>=2.13.0"]
claude = ["anthropic>=0.116.0", "tqdm>=4.68.4"]
yolo = ["ultralytics>=8.4.91"]
[project.scripts]
pickinsta = "pickinsta.ig_image_selector:main"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
minversion = "8.0"
testpaths = ["tests"]
addopts = "-q"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["F"]