From 657a20ee8af361e7f59df9c226a0a73e9200d04e Mon Sep 17 00:00:00 2001 From: Daniel Lundin Date: Tue, 20 Jul 2010 15:59:02 +0200 Subject: [PATCH] Added BSD license file --- LICENSE | 31 +++++++++++++++++++++++++++++++ MANIFEST | 2 +- MANIFEST.in | 2 +- README.rst | 34 +++++++++++++++++++++++++++++++++- 4 files changed, 66 insertions(+), 3 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..cbbef1f --- /dev/null +++ b/LICENSE @@ -0,0 +1,31 @@ +Copyright (c) 2010, Daniel Lundin and python-libuuid Project Contributors. +All rights reserved. + +Redistribution and use in source and binary forms of the software as well +as documentation, with or without modification, are permitted provided +that the following conditions are met: + +* Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +* 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. + +* The names of the contributors may not be used to endorse or + promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS 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 COPYRIGHT OWNER +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 AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. diff --git a/MANIFEST b/MANIFEST index 11d4e8a..72391b5 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,5 +1,5 @@ AUTHORS -MANIFEST +LICENSE MANIFEST.in README README.rst diff --git a/MANIFEST.in b/MANIFEST.in index f816574..5420bc9 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,3 @@ include MANIFEST.in MANIFEST -include AUTHORS README.rst +include AUTHORS LICENSE README.rst recursive-include libuuid *.py *.pyx *.pxd _uuid.c diff --git a/README.rst b/README.rst index b178b30..49a74e3 100644 --- a/README.rst +++ b/README.rst @@ -2,4 +2,36 @@ pylibuuid - Faster UUID generation using libuuid #################################################### -Python bindings for libuuid. Compatible with the standard library `uuid` module. +Python bindings using `libuuid` for fast `UUID` generation. +Fully compatible with the standard lib `uuid module`_. + + + +.. _uuid module: http://docs.python.org/library/uuid.html +.. _UUID: http://tools.ietf.org/html/rfc4122 +.. _libuuid: http://git.kernel.org/?p=fs/ext2/e2fsprogs.git;a=tree;f=lib/uuid + + + +Bug tracker +----------- + +If you have any suggestions, bug reports or annoyances please report them +to our issue tracker at http://github.com/dln/python-libuuid/issues/ + +Contributing +------------ + +Development of ``python-libuuid`` takes place at Github: http://github.com/dln/python-libuuid/ + +Patches are more than welcome. + +License +------- + +This software is licensed under the ``BSD`` software license. +See the``LICENSE`` file in the top distribution directory for full license +text. + + +.. # vim: syntax=rst expandtab tabstop=4 shiftwidth=4 shiftround