Skip to content

Commit

Permalink
Minor bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoltan Csontos authored and Zoltan Csontos committed Mar 20, 2019
1 parent 9645d2f commit d1770e2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
10 changes: 3 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
description='PyStack micro-framework command line interface',
Expand Down

0 comments on commit d1770e2

Please sign in to comment.