Skip to content
This repository has been archived by the owner on Jun 20, 2020. It is now read-only.

Commit

Permalink
Correct download link
Browse files Browse the repository at this point in the history
  • Loading branch information
3noch committed Jun 8, 2012
1 parent 1b5ba40 commit b962a29
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -3,12 +3,12 @@
setup(
name = "stringlike",
packages = ["stringlike"],
version = "0.2",
version = "0.2.1",
description = "Classes for mimicking string behavior",
author = "Elliot Cameron",
author_email = "elliot.cameron@covenanteyes.com",
url = "https://github.com/CovenantEyes/py-stringlike",
download_url = "https://github.com/CovenantEyes/py-stringlike/tarball/master",
download_url = "https://github.com/CovenantEyes/py-stringlike/tarball/v0.2.1",
keywords = ["string", "lazy"],
classifiers = [
"Programming Language :: Python",
Expand Down
2 changes: 1 addition & 1 deletion stringlike/__init__.py
@@ -1,7 +1,7 @@
from core import StringLike


__version__ = '0.2'
__version__ = '0.2.1'
VERSION = tuple(map(int, __version__.split('.')))

__all__ = ['StringLike']

0 comments on commit b962a29

Please sign in to comment.