Prepare setup.py to use wheel

Change-Id: I3ffa6492e828f2076048b7ee33975104cb15bf84
This commit is contained in:
memo 2015-10-19 21:06:11 +01:00 committed by Fausto Marzi
parent ba5ede7196
commit 571887fb0b
2 changed files with 9 additions and 5 deletions

View File

@ -1,10 +1,10 @@
[metadata]
name = freezer-web-ui
author = Fabrizio Fresco, Fausto Marzi, Jonas Pfannschmidt, Guillermo Ramirez-Garcia
author = Fabrizio Fresco, Fausto Marzi, Jonas Pfannschmidt, Guillermo Ramirez Garcia
author-email = openstack-dev@lists.openstack.org
summary = Freezer - Backup as a Service User Inteface
summary = Freezer - Backup as a Service User Interface
description-file = README.rst
home-page = https://launchpad.net/freezer
home-page = https://github.com/openstack/freezer-web-ui
license = Apache-2
classifier =
Development Status :: 5 - Production/Stable
@ -24,6 +24,10 @@ keywords =
freezer
backup
openstack
[files]
packages =
freezer_ui
[bdist_wheel]
universal = 1

View File

@ -1,8 +1,8 @@
#!/usr/bin/env python
from setuptools import setup
import setuptools
setup(
setuptools.setup(
setup_requires=['pbr'],
pbr=True,
)