diff --git a/README.md b/README.md index 66648c1..aa7e9a0 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ PyStack micro-framework command line interface. #### Installation: -```pip install pystack_cli``` +```pip install pystack-cli``` #### Usage * Create a new PyStack application: diff --git a/setup.py b/setup.py index 9619f22..e714f79 100644 --- a/setup.py +++ b/setup.py @@ -2,20 +2,16 @@ import sys script_paths = [ - 'bin/pystack' + 'bin\pystack.bat', + 'bin\pystack' ] -is_windows = hasattr(sys, 'getwindowsversion') -if is_windows: - script_paths = [ - 'bin\pystack.bat' - ] with open('README.md', 'r') as fh: long_description = fh.read() setuptools.setup( name='pystack_cli', - version='1.0.0', + version='1.0.2', author='Zoltan Csontos', author_email='zoltan.csontos.dev@gmail.com', description='PyStack micro-framework command line interface',