-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
35 lines (31 loc) · 1.11 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
[tool.poetry]
name = "fastocr"
version = "0.3.8"
description = "FastOCR is a desktop application for OCR API."
license = "LGPL-3.0-only"
authors = ["Bruce Zhang <zttt183525594@gmail.com>"]
homepage = "/~https://github.com/BruceZhang1993/FastOCR"
repository = "/~https://github.com/BruceZhang1993/FastOCR"
documentation = "/~https://github.com/BruceZhang1993/FastOCR"
keywords = ["ocr"]
readme = "README.md"
include = ["fastocr/qml/*.qml", "fastocr/qml/component/*.qml", "fastocr/data/FastOCR.desktop", "fastocr/data/config.example.ini",
"fastocr/data/i18n.pro", "fastocr/i18n/*.qm", "fastocr/resource/icon/*/*.svg", "fastocr/resource/icon/*/*.png", "fastocr/data/*.xml"]
[tool.poetry.dependencies]
python = ">=3.11,<4.0"
qasync = "*"
click = "*"
aiohttp = "*"
dbus-next = { version = "*", platform = "linux" }
PyQt6 = "*"
[tool.poetry.group.dev.dependencies]
poetry2setup = "*"
pytest = "*"
pytest-asyncio = "*"
pyinstaller = "*"
appimage-builder = { version = "*", platform = "linux" }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
fastocr = 'fastocr.__main__:main'