Bumped version

This commit is contained in:
Devin Carlen 2011-10-01 15:19:58 -07:00
parent 7f65cd96a7
commit d34ad685c3
2 changed files with 6 additions and 11 deletions

View File

@ -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.",

View File

@ -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',
]
)