From d34ad685c3cbe7c1c69190684dafc334dd8cb5a4 Mon Sep 17 00:00:00 2001 From: Devin Carlen Date: Sat, 1 Oct 2011 15:19:58 -0700 Subject: [PATCH] Bumped version --- django-openstack/setup.py | 2 +- openstack-dashboard/setup.py | 15 +++++---------- 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/django-openstack/setup.py b/django-openstack/setup.py index a9724f4197..3d703aada2 100755 --- a/django-openstack/setup.py +++ b/django-openstack/setup.py @@ -26,7 +26,7 @@ def read(fname): setup( name = "django-openstack", - version = "0.3", + version = "0.4", url = 'https://launchpad.net/django-openstack/', license = 'Apache 2.0', description = "A Django interface for OpenStack.", diff --git a/openstack-dashboard/setup.py b/openstack-dashboard/setup.py index c6d9aae128..adbfede43b 100755 --- a/openstack-dashboard/setup.py +++ b/openstack-dashboard/setup.py @@ -20,11 +20,12 @@ import os import shutil -from setuptools import setup, find_packages, findall +import setuptools def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() + dst = 'debian/openstack-dashboard/var/lib/dash' os.system('rm -rf %s' % dst) shutil.copytree('tools', '%s/tools' % dst) @@ -32,20 +33,15 @@ shutil.copytree('dashboard', '%s/dashboard' % dst) shutil.copytree('local', '%s/local' % dst) -setup( - name = "openstack-dashboard", - version = "0.2", +setuptools.setup( + name = 'openstack-dashboard', + version = '0.4', url = 'https://github.com/cloudbuilders/openstack-dashboard.git', license = 'Apache 2.0', description = "A Django interface for OpenStack.", long_description = read('README'), author = 'Devin Carlen', author_email = 'devin.carlen@gmail.com', -# packages = find_packages(), -# package_data = {'openstack-dashboard': -# [s[len('dashboard/'):] for s in -# findall('dashboard/templates')]}, - data_files = [], install_requires = ['setuptools', 'mox>=0.5.0'], zip_safe = False, @@ -59,4 +55,3 @@ setup( 'Topic :: Internet :: WWW/HTTP', ] ) -