Commit 769405e0 authored by Sébastien Luttringer's avatar Sébastien Luttringer
Browse files

Fix setup.py version

parent b1ecbb84
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -17,14 +17,14 @@
# along with CloudControl.  If not, see <http://www.gnu.org/licenses/>.

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',