moving version variable

This commit is contained in:
Gabriel Falcao 2012-09-06 16:20:44 -04:00
parent 62d64a48a1
commit 88669aa53d
2 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ import sys
import uuid
import platform
__version__ = '0.4.0'
version = '0.4.1'
from StringIO import StringIO

View File

@ -16,10 +16,10 @@
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
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',