Skip to content

Commit

Permalink
Change package name
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Como committed Mar 31, 2016
1 parent ff834e2 commit dc3c7d4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ First, install Snake. It is recommended to install it to your system Python inst
Use a local installation if you need a specific version.

```
pip install snaketool
pip install pyrake
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ def upload():
"""Upload the current version to PyPI"""
sh('rm -rf build dist')
sh('python setup.py sdist bdist_wheel')
sh('twine upload -u jcomo dist/*')
sh('twine upload dist/*')
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def run_tests(self):


setup(
name = 'snaketool',
name = 'pyrake',
version = VERSION,
description = "An easy to use build script utility",
url = 'https://github.com/jcomo/snake',
Expand Down
2 changes: 1 addition & 1 deletion snake/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '0.1.1'
VERSION = '0.1.0'

0 comments on commit dc3c7d4

Please sign in to comment.