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

Commit

Permalink
Rename repo and make it importable.
Browse files Browse the repository at this point in the history
  • Loading branch information
3noch committed Jun 9, 2012
1 parent b962a29 commit 88f669c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
2 changes: 2 additions & 0 deletions __init__.py
@@ -0,0 +1,2 @@
# This __init__ makes this whole repo a Python module so it can
# easily be embedded into other projects.
11 changes: 7 additions & 4 deletions setup.py
@@ -1,14 +1,17 @@
# stringlike's setup.py
from distutils.core import setup

from stringlike import __version__

setup(
name = "stringlike",
packages = ["stringlike"],
version = "0.2.1",
version = __version__,
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/v0.2.1",
url = "https://github.com/CovenantEyes/py_stringlike",
download_url = "https://github.com/CovenantEyes/py_stringlike/tarball/v" + __version__,
keywords = ["string", "lazy"],
classifiers = [
"Programming Language :: Python",
Expand All @@ -34,7 +37,7 @@
behave exactly like strings but allow strings to be constructed in a thunk
(i.e. lazily) instead of strictly (i.e. immediately).
Here's a blog giving an example of how it can be used:
An example of how it can be used:
http://developer.covenanteyes.com/stringlike-in-python/
"""
)
2 changes: 1 addition & 1 deletion stringlike/__init__.py
@@ -1,7 +1,7 @@
from core import StringLike


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

__all__ = ['StringLike']

0 comments on commit 88f669c

Please sign in to comment.