-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
69 lines (59 loc) · 1.87 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[tool.poetry]
name = "cucaracha"
version = "0.6.0"
description = "Mr. Franz Cucaracha will be glad to assist you to the document analysis and processing routine"
authors = ["Antonio Senra Filho <[email protected]>"]
license = "MIT"
readme = "README.md"
classifiers = [
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[tool.poetry.urls]
"Documentation" = "https://cucaracha.readthedocs.io/en/latest/"
"Code" = "https://github.com/acsenrafilho/cucaracha"
"Code Issues" = "https://github.com/acsenrafilho/cucaracha/issues"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
numpy = "^1.22.4"
rich = "^13.9.3"
opencv-python = "^4.10.0.84"
pymupdf = "^1.24.13"
tensorflow = "2.16.2"
tensorflow-io-gcs-filesystem = "0.37.1"
kagglehub = "^0.3.4"
scipy = "^1.15.1"
scikit-learn = "^1.6.1"
seaborn = "^0.13.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-cov = "^6.0.0"
blue = "^0.9.1"
isort = "^5.13.2"
taskipy = "^1.14.0"
label-studio = "^1.14.0.post0"
[tool.poetry.group.doc.dependencies]
mkdocs-material = "^9.5.43"
mkdocstrings = "^0.26.2"
mkdocstrings-python = "^1.12.2"
pymdown-extensions = "^10.12"
[tool.isort]
profile = "black"
line_length = 79
[tool.taskipy.tasks]
lint = "blue . && isort ."
docs = "mkdocs serve"
pre_test="task lint"
test = "pytest --ignore-glob='./cucaracha/scripts/*.py' -s -x --cov=cucaracha -vv"
post_test = "coverage html && find ./tests -type f -name '*.keras' -delete"
[tool.pytest.ini_options]
pythonpath = "."
addopts = "--doctest-modules"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"