diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..23377c6 --- /dev/null +++ b/COPYING @@ -0,0 +1,23 @@ +Copyright (c) Iain R. Learmonth 2015. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. diff --git a/README b/README new file mode 100644 index 0000000..a95c763 --- /dev/null +++ b/README @@ -0,0 +1,3 @@ + +There should really be a README file. + diff --git a/bin/lbng b/bin/lbng index c2c6791..7324a79 100644 --- a/bin/lbng +++ b/bin/lbng @@ -1,11 +1,11 @@ #!/usr/bin/env python """ -lbng - Live Build Next Generation +live-build-ng - Live-Build NG (C) Iain R. Learmonth 2015 See COPYING for terms of usage, modification and redistribution. -bin/lbng - Live Build Next Generation +bin/lbng - Live-Build NG (Application) """ import sys diff --git a/lbng/grub.py b/lbng/grub.py index 3ee9e3e..2fc3255 100644 --- a/lbng/grub.py +++ b/lbng/grub.py @@ -1,5 +1,5 @@ """ -lbng - Live Build Next Generation +live-build-ng - Live-Build NG (C) Iain R. Learmonth 2015 See COPYING for terms of usage, modification and redistribution. diff --git a/lbng/isolinux.py b/lbng/isolinux.py index b6b71aa..baed4d6 100644 --- a/lbng/isolinux.py +++ b/lbng/isolinux.py @@ -1,5 +1,5 @@ """ -lbng - Live Build Next Generation +live-build-ng - Live-Build NG (C) Iain R. Learmonth 2015 See COPYING for terms of usage, modification and redistribution. diff --git a/lbng/vm.py b/lbng/vm.py index 752f218..b436393 100644 --- a/lbng/vm.py +++ b/lbng/vm.py @@ -1,5 +1,5 @@ """ -lbng - Live Build Next Generation +live-build-ng - Live-Build NG (C) Iain R. Learmonth 2015 See COPYING for terms of usage, modification and redistribution. diff --git a/lbng/xorriso.py b/lbng/xorriso.py index 74ad4fe..511693b 100644 --- a/lbng/xorriso.py +++ b/lbng/xorriso.py @@ -1,5 +1,5 @@ """ -lbng - Live Build Next Generation +live-build-ng - Live-Build NG (C) Iain R. Learmonth 2015 See COPYING for terms of usage, modification and redistribution. diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..431ef81 --- /dev/null +++ b/setup.py @@ -0,0 +1,40 @@ +#!/usr/bin/env python + +""" +live-build-ng - Live-Build NG +(C) Iain R. Learmonth 2015 +See COPYING for terms of usage, modification and redistribution. + +setup.py - setuptools script +""" + +from setuptools import setup, find_packages + +setup( + name='live-build-ng', + version='0.1', + description='Create a Debian live image based on vmdebootstrap', + author='Iain R. Learmonth', + author_email='irl@debian.org', + url='https://anonscm.debian.org/cgit/vmdebootstrap/live-build-ng.git/', + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Environment :: Console', + 'Intended Audience :: Developers', + 'Intended Audience :: System Administrators', + 'License :: OSI Approved :: BSD License', + 'Programming Language :: Python', + 'Topic :: System :: Installation/Setup', + ], + packages=[ + 'lbng', + ], + package_data={ + 'live-build-ng': ['README', 'COPYING'], + }, + install_requires=[ + 'cliapp >= 1.20150829', + 'vmdebootstrap', + ], + scripts=['bin/lbng'] +)