Skip to content

Commit

Permalink
Fix entrypoints
Browse files Browse the repository at this point in the history
  • Loading branch information
ChenglongMa committed Aug 5, 2022
1 parent f21a863 commit 9fa3a02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup
from setuptools import find_packages

VERSION = '0.1.4'
VERSION = '0.1.5'

with open('README.md') as f:
LONG_DESCRIPTION = f.read()
Expand All @@ -27,7 +27,7 @@
},
entry_points={
'console_scripts': [
'stone=stone.main:main'
'stone = stone.__main__:main'
],
},
install_requires=[
Expand Down

0 comments on commit 9fa3a02

Please # to comment.