-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
79 lines (71 loc) · 1.62 KB
/
setup.cfg
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
# This file is used to configure your project.
# Read more about the various options under:
# http://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
[metadata]
name = afor-ocr
version = attr: demo.__version__
description = "An OCR implementation focused on historical documents made for AFOr project"
long-description = file: README.md
license = MIT
project_urls =
Source code = https://github.com/archiviofontiorali/afor-ocr
# Change if running only on Windows, Mac or Linux (comma-separated)
platforms = any
[options]
zip_safe = False
include_package_data = True
python_requires = >=3.8.0
install_requires =
numpy~=1.19.2
pytesseract
opencv-python-headless
imutils
loguru
scripts =
[options.packages.find]
exclude =
tests
[options.extras_require]
# Add here additional requirements for extra features, to install with:
# `pip install api[PDF]` like:
# PDF = ReportLab; RXP
# Add here test requirements (semicolon/line-separated)
demo =
holoviews>=1.13.3
bokeh>=2.2.1
panel>=0.9.7
param
datashader =
datashader
testing =
pytest
develop =
black
flake8
isort
pip
setuptools
typing-extensions
[aliases]
build = bdist_wheel
release = build upload
#[bdist_wheel]
# Use this option if your package is pure-python
#universal = 1
[flake8]
# Some sane defaults for the code style checker flake8
exclude =
.tox
build
dist
.eggs
docs/conf.py
max-line-length=80
ignore=E203,W503,E302
[isort]
line_length=80
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
combine_as_imports=True
use_parentheses=True