-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.cfg
54 lines (48 loc) · 1.2 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
[global]
commands = download.DownloadCommand
[metadata]
name = nidaba
author = Open Greek and Latin
author-email = [email protected]
summary = Expandable and scalable OCR pipeline
description-file = README.rst
license = GPLv2+
classifier =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Science/Research
Intended Audience :: Education
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Operating System :: POSIX
Programming Language :: Python :: 2 :: Only
url = http://openphilology.github.com/nidaba
keywords =
ocr
tesseract
ocropus
celery
[files]
packages = nidaba
data_files =
etc/nidaba =
examples/celery.yaml
examples/nidaba.yaml
[entry_points]
console_scripts =
nidaba = nidaba.cli:main
nidaba_mkdict = nidaba.contrib.mkdict:main
nidaba.plugins =
kraken = nidaba.plugins.kraken
ocropus = nidaba.plugins.ocropus
leptonica = nidaba.plugins.leptonica
tesseract = nidaba.plugins.tesseract
pybossa = nidaba.plugins.pybossa
[extras]
kraken =
kraken
[pbr]
SKIP_GENERATE_AUTHORS=1
[flake8]
ignore = F821, F401, F841
max-line-length = 160
exclude = tests/*