This repository was archived by the owner on May 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (81 loc) · 2.26 KB
/
pyproject.toml
File metadata and controls
89 lines (81 loc) · 2.26 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{ name = "Team Konnexions", email = "info@konnexions.ch" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
"Topic :: Text Processing",
"Typing :: Typed",
]
description = "Document Content Recognition API"
keywords = [
"Document Content Recognition",
"NLP",
"OCR",
]
maintainers = [
{ name = "Team Konnexions", email = "info@konnexions.ch" },
]
name = "dcr-core"
readme = "README.md"
requires-python = ">=3.10"
version = "0.9.7"
[project.urls]
"Bug Tracker" = "https://github.com/KonnexionsGmbH/dcr-core/issues"
"Documentation" = "https://konnexionsgmbh.github.io/dcr-core/"
"Homepage" = "https://github.com/KonnexionsGmbH/dcr-core"
"Release Notes" = "https://konnexionsgmbh.github.io/dcr-core/release_notes/"
"Release History" = "https://konnexionsgmbh.github.io/dcr-core/release_history/"
[tool.bandit]
[tool.black]
line-length = 140
[tool.isort]
float_to_top = true
force_single_line = true
overwrite_in_place = true
profile = "black"
[tool.mypy]
check_untyped_defs = true
disallow_any_decorated = true
disallow_any_explicit = true
disallow_any_expr = false
disallow_any_generics = true
# due to SpaCy ...
disallow_any_unimported = false
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
follow_imports = "skip"
namespace_packages = false
no_implicit_optional = true
pretty = true
show_column_numbers = true
show_error_codes = true
strict = true
strict_equality = true
warn_no_return = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = false
warn_unused_configs = true
warn_unused_ignores = true
[tool.pytest.ini_options]
console_output_style = "count"
markers = ["issue"]
norecursedirs = "./tests/helpers"
pythonpath = "./src/"
testpaths = "./tests/"
[tool.setuptools.package-data]
dcr_core = ["*.pyd", "*.pyi", "*.so"]