From 769405e06c7e08fae2ca2f909f3055acd58ac3c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Luttringer?= Date: Wed, 13 May 2015 19:45:14 +0200 Subject: [PATCH] Fix setup.py version --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 80f9f55..aca2334 100644 --- a/setup.py +++ b/setup.py @@ -17,14 +17,14 @@ # along with CloudControl. If not, see . from setuptools import setup, find_packages -import cccli +import cloudcontrol.cli import os ldesc = open(os.path.join(os.path.dirname(__file__), 'README')).read() setup( name='cc-cli', - version=cccli.version, + version=cloudcontrol.cli.version, description='CloudControl CLI', long_description=ldesc, author='Sébastien Luttringer', -- GitLab