Fixed T50811: 'bam' command cannot import name 'main'

The 'bam' CLI command entry point was pointing to the wrong module. This is
now fixed.
This commit is contained in:
2017-03-07 16:06:43 +01:00
parent d74e4d0604
commit 8e8a91cd89

View File

@@ -44,9 +44,8 @@ setup(
}, },
entry_points={ entry_points={
'console_scripts': [ 'console_scripts': [
'bam = bam:main', 'bam = bam.cli:main',
], ],
}, },
install_requires=requires, install_requires=requires,
) )