forked from faustomorales/keras-ocr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
59 lines (52 loc) · 1.38 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
[pylint]
extension-pkg-whitelist = cv2,torch,pyclipper
disable = C0111
ignore = _version.py
good-names=y,s1,s2,s3,s4,s5,h,double_conv,copyStateDict,v,x,g,sx,sy,ex,ey,k,X
[mypy]
ignore_missing_imports = True
check_untyped_defs = True
[yapf]
column_limit = 100
[coverage:run]
omit =
keras_ocr/_version.py
[mypy-keras-ocr._version]
ignore_errors = True
[metadata]
name = keras-ocr
author = Fausto Morales
author_email = faustomorales@gmail.com
description = A packaged and flexible version of the CRAFT text detector and Keras CRNN recognition model.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/faustomorales/keras-ocr
classifiers =
Development Status :: 2 - Pre-Alpha
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Operating System :: POSIX :: Linux
Operating System :: Unix
Operating System :: MacOS
Operating System :: Microsoft :: Windows
[options]
packages = find:
include_package_data = True
install_requires =
essential_generators
tqdm
imgaug
validators
fonttools
editdistance
pyclipper
shapely
efficientnet==1.0.0
[versioneer]
VCS = git
style = pep440-pre
versionfile_source = keras_ocr/_version.py
versionfile_build = keras_ocr/_version.py
tag_prefix = v