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

228 by Scott Moser
add setup.py and tox.ini
1
from distutils.core import setup
2
from glob import glob
3
import os
4
5
VERSION = '0.1.0'
6
7
8
def is_f(p):
9
    return os.path.isfile(p)
10
11
setup(
12
    name="maas-images",
13
    description='Build imagse for maas',
14
    version=VERSION,
15
    author='Scott Moser',
16
    author_email='scott.moser@canonical.com',
17
    license="AGPL",
18
    url='http://launchpad.net/maas-images/',
19
    packages=[
20
        'meph2',
21
        'meph2.commands',
22
    ],
23
    scripts=glob('bin/*')
24
)