PEP8 fixes for setup.py

This commit is contained in:
Arvind Somy 2011-08-24 13:10:29 -04:00
parent b6e55b41e9
commit b9bd8976b2

View File

@ -2,15 +2,16 @@ import os
import sys
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
requirements = ['httplib2', 'eventlet', 'routes', 'webob']
setup(
name = "Quantum",
version = "0.1",
description = "Layer 2 network as a service for Openstack",
name='Quantum',
version='0.1',
description='Layer 2 network as a service for Openstack',
long_description=read('README'),
url='http://launchpad.net/quantum',
license='Apache',