2024-02-01 11:56:34 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "anki-from-dictionary"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "GPT-4V application to extract Anki cards from dictionaries"
|
|
|
|
authors = ["Yandrik <me@yandrik.dev>"]
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.10"
|
|
|
|
openai = "^1.10.0"
|
|
|
|
requests = "^2.31.0"
|
|
|
|
pillow = "^10.2.0"
|
|
|
|
pdf2image = "^1.17.0"
|
2024-02-05 08:47:49 +00:00
|
|
|
pytesseract = "^0.3.10"
|
2024-02-01 11:56:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|