Skip to content

Commit

Permalink
Fix bug of main in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
maxint committed Jun 4, 2015
1 parent af306e8 commit 38a6c83
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion kpfuse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
from .version import __version__

from .errors import setup_logging
from .kpfuse import KuaipanFuseOperations
from .kpfuse import KuaipanFuseOperations
from .launch import main
2 changes: 1 addition & 1 deletion kpfuse/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# coding: utf-8

__version__ = '0.5'
__version__ = '0.5.1'

__author__ = 'maxint'
__email__ = '[email protected]'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
package_data={'kpfuse': ['*.json']},
entry_points={
'console_scripts': [
'kpfs=kpfuse.command:main',
'kpfs=kpfuse.launch:main',
]
},
install_requires=['requests', 'requests-oauthlib', 'fusepy'],
Expand Down

0 comments on commit 38a6c83

Please sign in to comment.