Skip to content

Commit

Permalink
updated setup.py to fix entrypoitns
Browse files Browse the repository at this point in the history
  • Loading branch information
buswinka committed Oct 15, 2021
1 parent a678f39 commit aa18142
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = hcat
version = 0.1.34
version = 0.2.4
author = Chris Buswinka
author_email = [email protected]
classifiers = Programming Language :: Python :: 3
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
python_requires='>=3',
entry_points = {'console_scripts': ['hcat = hcat.main:analyze']},
entry_points = {'console_scripts': ['hcat-segment=hcat.main:segment',
'hcat-detect=hcat.main:detect',
'hcat=hcat.main:cli']},
install_requires = [
'kornia>=0.5.2',
'numpy>=1.10.0',
Expand Down

0 comments on commit aa18142

Please sign in to comment.