licenses.rst 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. Licenses
  2. ========
  3. xlwt has various licenses that apply to the different parts of it, they are
  4. listed below:
  5. The license for the work John Machin has done since xlwt was created::
  6. Portions copyright (c) 2007, Stephen John Machin, Lingfo Pty Ltd
  7. All rights reserved.
  8. Redistribution and use in source and binary forms, with or without
  9. modification, are permitted provided that the following conditions are met:
  10. 1. Redistributions of source code must retain the above copyright notice,
  11. this list of conditions and the following disclaimer.
  12. 2. Redistributions in binary form must reproduce the above copyright notice,
  13. this list of conditions and the following disclaimer in the documentation
  14. and/or other materials provided with the distribution.
  15. 3. None of the names of Stephen John Machin, Lingfo Pty Ltd and any
  16. contributors may be used to endorse or promote products derived from this
  17. software without specific prior written permission.
  18. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  19. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  20. THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  21. PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
  22. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  23. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  24. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  25. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  26. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  27. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  28. THE POSSIBILITY OF SUCH DAMAGE.
  29. The licensing for the unit tests added as part of the work for Python 3
  30. compatibility is as follows::
  31. Author: mozman --<mozman@gmx.at>
  32. Purpose: test_mini
  33. Created: 03.12.2010
  34. Copyright (C) 2010, Manfred Moitzi
  35. License: BSD licence
  36. The license for pyExcelerator, from which xlwt was forked::
  37. Copyright (C) 2005 Roman V. Kiseliov
  38. All rights reserved.
  39. Redistribution and use in source and binary forms, with or without
  40. modification, are permitted provided that the following conditions
  41. are met:
  42. 1. Redistributions of source code must retain the above copyright
  43. notice, this list of conditions and the following disclaimer.
  44. 2. Redistributions in binary form must reproduce the above copyright
  45. notice, this list of conditions and the following disclaimer in
  46. the documentation and/or other materials provided with the
  47. distribution.
  48. 3. All advertising materials mentioning features or use of this
  49. software must display the following acknowledgment:
  50. "This product includes software developed by
  51. Roman V. Kiseliov <roman@kiseliov.ru>."
  52. 4. Redistributions of any form whatsoever must retain the following
  53. acknowledgment:
  54. "This product includes software developed by
  55. Roman V. Kiseliov <roman@kiseliov.ru>."
  56. THIS SOFTWARE IS PROVIDED BY Roman V. Kiseliov ``AS IS'' AND ANY
  57. EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  58. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  59. PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Roman V. Kiseliov OR
  60. ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  61. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  62. NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  63. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  64. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  65. STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  66. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  67. OF THE POSSIBILITY OF SUCH DAMAGE.
  68. Roman V. Kiseliov
  69. Russia
  70. Kursk
  71. Libknecht St., 4
  72. +7(0712)56-09-83
  73. <roman@kiseliov.ru>
  74. Portions of xlwt.Utils are based on pyXLWriter which is licensed as follows::
  75. Copyright (c) 2004 Evgeny Filatov <fufff@users.sourceforge.net>
  76. Copyright (c) 2002-2004 John McNamara (Perl Spreadsheet::WriteExcel)
  77. This library is free software; you can redistribute it and/or modify it
  78. under the terms of the GNU Lesser General Public License as published by
  79. the Free Software Foundation; either version 2.1 of the License, or
  80. (at your option) any later version.
  81. This library is distributed in the hope that it will be useful, but
  82. WITHOUT ANY WARRANTY; without even the implied warranty of
  83. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
  84. General Public License for more details:
  85. https://www.gnu.org/licenses/lgpl.html
  86. pyXLWriter also makes reference to the PERL Spreadsheet::WriteExcel as follows::
  87. This module was written/ported from PERL Spreadsheet::WriteExcel module
  88. The author of the PERL Spreadsheet::WriteExcel module is John McNamara
  89. <jmcnamara@cpan.org>