diff --git a/couleur.py b/couleur.py index badd663..2e72f8a 100644 --- a/couleur.py +++ b/couleur.py @@ -20,7 +20,7 @@ import sys import uuid import platform -__version__ = '0.4.0' +version = '0.4.1' from StringIO import StringIO diff --git a/setup.py b/setup.py index 20d6c4e..f20d5d9 100644 --- a/setup.py +++ b/setup.py @@ -16,10 +16,10 @@ # You should have received a copy of the GNU Lesser General Public License # along with this program. If not, see . from setuptools import setup -from couleur import __version__ +from couleur import version setup(name='couleur', - version=__version__, + version=version, description=(u'ANSI terminal tool for python, colored shell and other ' 'handy fancy features'), author='Gabriel Falcao',