~smoser/maas-images/trunk.img2squash-fixes

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from distutils.core import setup
from glob import glob
import os

VERSION = '0.1.0'


def is_f(p):
    return os.path.isfile(p)

setup(
    name="maas-images",
    description='Build imagse for maas',
    version=VERSION,
    author='Scott Moser',
    author_email='scott.moser@canonical.com',
    license="AGPL",
    url='http://launchpad.net/maas-images/',
    packages=[
        'meph2',
        'meph2.commands',
    ],
    scripts=glob('bin/*')
)