-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1.13 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "openlogo"
version = "0.4.0"
description = "Web crawler for logo detection using AI (GPT-4o-mini). Prioritizes Clearbit API for instant logos, falls back to crawler. Requires Cairo system library."
authors = [
{name = "SCAILE Technologies GmbH", email = "hello@scaile.tech"},
]
dependencies = [
"aiohttp>=3.8.0",
"beautifulsoup4>=4.9.3",
"Pillow>=8.0.0",
"pydantic>=2.0.0",
"rich>=10.0.0",
"cairosvg>=2.7.0",
# detection.py dependencies
"python-magic>=0.4.27",
"opencv-python>=4.5.0",
"extcolors>=1.0.0",
"pytesseract>=0.3.10",
"imagehash>=4.3.0",
"tweepy>=4.14.0",
"jsonschema>=4.0.0",
"scikit-learn>=1.0.0",
]
readme = "README.md"
requires-python = ">=3.9"
[project.optional-dependencies]
ai = ["openai>=1.0.0"]
rembg = ["rembg>=2.0.0"]
supabase = ["supabase>=2.0.0"]
all = ["openai>=1.0.0", "rembg>=2.0.0", "supabase>=2.0.0"]
dev = ["pytest>=7.0.0", "pytest-asyncio>=0.21.0"]
[tool.hatch.build.targets.wheel]
packages = ["src/openlogo"]
[tool.hatch.build.targets.sdist]
include = ["src/openlogo"]