~blake-rouse/maas/networks-edit-ui

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Gavin Panella
  • Date: 2012-01-18 17:08:17 UTC
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: gavin@gromper.net-20120118170817-ggtnu7ir2ymelhz1
Fix lint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
"""Distutils installer for maas."""
6
6
 
7
7
import os
8
 
from setuptools import setup, find_packages
 
8
 
 
9
from setuptools import (
 
10
    find_packages,
 
11
    setup,
 
12
    )
 
13
 
9
14
 
10
15
def read(fname):
11
16
    return open(os.path.join(os.path.dirname(__file__), fname)).read().strip()