PEP8 fixes for setup.py
This commit is contained in:
7
setup.py
7
setup.py
@@ -2,15 +2,16 @@ import os
|
|||||||
import sys
|
import sys
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
|
||||||
def read(fname):
|
def read(fname):
|
||||||
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
||||||
|
|
||||||
requirements = ['httplib2', 'eventlet', 'routes', 'webob']
|
requirements = ['httplib2', 'eventlet', 'routes', 'webob']
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = "Quantum",
|
name='Quantum',
|
||||||
version = "0.1",
|
version='0.1',
|
||||||
description = "Layer 2 network as a service for Openstack",
|
description='Layer 2 network as a service for Openstack',
|
||||||
long_description=read('README'),
|
long_description=read('README'),
|
||||||
url='http://launchpad.net/quantum',
|
url='http://launchpad.net/quantum',
|
||||||
license='Apache',
|
license='Apache',
|
||||||
|
|||||||
Reference in New Issue
Block a user