Adding setuptools script and license details
This commit is contained in:
parent
97c917c9e0
commit
85f22a2d44
8 changed files with 72 additions and 6 deletions
23
COPYING
Normal file
23
COPYING
Normal file
|
|
@ -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.
|
||||
3
README
Normal file
3
README
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
There should really be a README file.
|
||||
|
||||
4
bin/lbng
4
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 <irl@debian.org>
|
||||
See COPYING for terms of usage, modification and redistribution.
|
||||
|
||||
bin/lbng - Live Build Next Generation
|
||||
bin/lbng - Live-Build NG (Application)
|
||||
"""
|
||||
|
||||
import sys
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
"""
|
||||
lbng - Live Build Next Generation
|
||||
live-build-ng - Live-Build NG
|
||||
(C) Iain R. Learmonth 2015 <irl@debian.org>
|
||||
See COPYING for terms of usage, modification and redistribution.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
"""
|
||||
lbng - Live Build Next Generation
|
||||
live-build-ng - Live-Build NG
|
||||
(C) Iain R. Learmonth 2015 <irl@debian.org>
|
||||
See COPYING for terms of usage, modification and redistribution.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
"""
|
||||
lbng - Live Build Next Generation
|
||||
live-build-ng - Live-Build NG
|
||||
(C) Iain R. Learmonth 2015 <irl@debian.org>
|
||||
See COPYING for terms of usage, modification and redistribution.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
"""
|
||||
lbng - Live Build Next Generation
|
||||
live-build-ng - Live-Build NG
|
||||
(C) Iain R. Learmonth 2015 <irl@debian.org>
|
||||
See COPYING for terms of usage, modification and redistribution.
|
||||
|
||||
|
|
|
|||
40
setup.py
Normal file
40
setup.py
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
"""
|
||||
live-build-ng - Live-Build NG
|
||||
(C) Iain R. Learmonth 2015 <irl@debian.org>
|
||||
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']
|
||||
)
|
||||
Loading…
Reference in a new issue