-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (35 loc) · 1.42 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
36
37
38
[tool.poetry]
name = "ls-converter"
version = "0.0.2"
description = "Creates ready-to-use Label Studio pre-populated JSON files from popular OCR formats."
authors = ["Kalle Westerling <kalle.westerling@bl.uk>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Living-with-machines/label-studio-converter"
repository = "https://github.com/Living-with-machines/label-studio-converter"
keywords = ["computer-vision", "deep-learning", "image-annotation", "annotation", "annotations", "dataset", "image-classification", "labeling", "datasets", "semantic-segmentation", "annotation-tool", "text-annotation", "boundingbox", "image-labeling", "labeling-tool", "image-labelling-tool", "data-labeling", "label-studio", "ocr"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
"Topic :: Text Processing",
"Topic :: Scientific/Engineering :: Image Processing",
]
[tool.poetry.dependencies]
python = "^3.9"
Pillow = "^9.3.0"
requests = "^2.28.1"
xmltodict = "^0.13.0"
[tool.poetry.dev-dependencies]
black = "^22.12.0"
xmltodict = "^0.13.0"
pytesseract = "^0.3.10"
pytest = "^7.2.0"
tox = "^4.0.9"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"