kebab-case snake_case executable, fix #9

This commit is contained in:
Konstantin Baierer 2019-12-06 18:21:00 +01:00
parent eb4c8ee99c
commit b6ca1a7c53
3 changed files with 5 additions and 3 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
__pycache__
*.egg-info

View file

@ -1,8 +1,8 @@
{
"version": "0.0.1",
"tools": {
"ocrd_sbb_textline_detector": {
"executable": "ocrd_sbb_textline_detector",
"ocrd-sbb-textline-detector": {
"executable": "ocrd-sbb-textline-detector",
"description": "Detect lines",
"steps": ["layout/segmentation/line"],
"input_file_grp": [

View file

@ -24,7 +24,7 @@ setup(
entry_points={
'console_scripts': [
"sbb_textline_detector=qurator.sbb_textline_detector:main",
"ocrd_sbb_textline_detector=qurator.sbb_textline_detector:ocrd_sbb_textline_detector",
"ocrd-sbb-textline-detector=qurator.sbb_textline_detector:ocrd_sbb_textline_detector",
]
},
python_requires='>=3.6.0',