Add console entry point (#72)

* Add console entry point

* Make entry point conform to linter settings.
This commit is contained in:
Daniel J. Perry
2022-08-28 14:53:15 -04:00
committed by GitHub
parent 5adda130b8
commit e79971a7eb
2 changed files with 70 additions and 0 deletions

View File

@@ -96,4 +96,9 @@ setup(
'test': PyTest,
'lint': LintCommand,
},
entry_points={
'console_scripts': [
'markdownify = markdownify.main:main'
]
}
)