Added command interface

This commit is contained in:
Jamie Hardt
2019-10-07 19:33:39 -07:00
parent 786ea39024
commit fd64c2a188
3 changed files with 29 additions and 4 deletions

View File

@@ -24,5 +24,10 @@ setup(name='ptulsconv',
"Programming Language :: Python :: 3.7"],
packages=['ptulsconv'],
keywords='text-processing parsers film tv editing editorial',
install_requires=['parsimonious', 'timecode']
install_requires=['parsimonious', 'timecode'],
entry_points={
'console_scripts': [
'ptulsconv = ptulsconv.__main__:main'
]
}
)