-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.18 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
[project]
name = "SICAR"
version = "0.7.3"
authors = [{ name = "Gilson Urbano", email = "[email protected]" }]
description = "SICAR - Tool designed for students, researchers, data scientists or anyone who would like to have access to SICAR files."
requires-python = ">=3.9"
license = { file = "LICENSE" }
dependencies = [
"httpx>=0.27.0",
"urllib3>=1.26.15",
"pytesseract==0.3.10",
"opencv-python>=4.6.0.66, <4.10",
"numpy>=1.22.4, <2",
"tqdm>=4.65.0",
"matplotlib>=3.7.1",
"beautifulsoup4>=4.0.0, <4.20.0"
]
[project.optional-dependencies]
paddle = ["paddlepaddle==2.5.0rc0", "paddleocr==2.6.1.3"]
dev = ["coverage", "interrogate", "black", "coveralls"]
all = ["SICAR[paddle,dev]"]
[project.urls]
"Homepage" = "https://github.com/urbanogilson/SICAR"
"Bug Tracker" = "https://github.com/urbanogilson/SICAR/issues"
[tool.setuptools]
packages = ["SICAR", "SICAR.drivers"]
[tool.interrogate]
exclude = ["SICAR/tests*", "examples/*"]
verbose = 2
generate-badge = ".github"
[tool.coverage.run]
source = ["SICAR"]
omit = ["SICAR/tests/integration/*"]
[tool.coverage.report]
show_missing = true
ignore_errors = false
fail_under = 100
exclude_lines = ["except ImportError:"]