NOTICE 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. Tablib includes some vendorized python libraries: ordereddict, pyyaml,
  2. simplejson, unicodecsv, and xlwt.
  3. Markup License
  4. ==============
  5. Markup is in the public domain.
  6. OrderedDict License
  7. ===================
  8. Copyright (c) 2009 Raymond Hettinger
  9. Permission is hereby granted, free of charge, to any person
  10. obtaining a copy of this software and associated documentation files
  11. (the "Software"), to deal in the Software without restriction,
  12. including without limitation the rights to use, copy, modify, merge,
  13. publish, distribute, sublicense, and/or sell copies of the Software,
  14. and to permit persons to whom the Software is furnished to do so,
  15. subject to the following conditions:
  16. The above copyright notice and this permission notice shall be
  17. included in all copies or substantial portions of the Software.
  18. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  19. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  20. OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  21. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  22. HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  23. WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  24. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  25. OTHER DEALINGS IN THE SOFTWARE.
  26. PyYAML License
  27. ==============
  28. Copyright (c) 2006 Kirill Simonov
  29. Permission is hereby granted, free of charge, to any person obtaining a copy of
  30. this software and associated documentation files (the "Software"), to deal in
  31. the Software without restriction, including without limitation the rights to
  32. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  33. of the Software, and to permit persons to whom the Software is furnished to do
  34. so, subject to the following conditions:
  35. The above copyright notice and this permission notice shall be included in all
  36. copies or substantial portions of the Software.
  37. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  38. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  39. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  40. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  41. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  42. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  43. SOFTWARE.
  44. UnicodeCSV License
  45. ==================
  46. Copyright 2010 Jeremy Dunck. All rights reserved.
  47. Redistribution and use in source and binary forms, with or without modification, are
  48. permitted provided that the following conditions are met:
  49. 1. Redistributions of source code must retain the above copyright notice, this list of
  50. conditions and the following disclaimer.
  51. 2. Redistributions in binary form must reproduce the above copyright notice, this list
  52. of conditions and the following disclaimer in the documentation and/or other materials
  53. provided with the distribution.
  54. THIS SOFTWARE IS PROVIDED BY JEREMY DUNCK ``AS IS'' AND ANY EXPRESS OR IMPLIED
  55. WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  56. FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JEREMY DUNCK OR
  57. CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  58. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  59. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  60. ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  61. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  62. ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  63. The views and conclusions contained in the software and documentation are those of the
  64. authors and should not be interpreted as representing official policies, either expressed
  65. or implied, of Jeremy Dunck.
  66. XLWT License
  67. ============
  68. Portions copyright © 2007, Stephen John Machin, Lingfo Pty Ltd
  69. All rights reserved.
  70. Redistribution and use in source and binary forms, with or without
  71. modification, are permitted provided that the following conditions are met:
  72. 1. Redistributions of source code must retain the above copyright notice,
  73. this list of conditions and the following disclaimer.
  74. 2. Redistributions in binary form must reproduce the above copyright notice,
  75. this list of conditions and the following disclaimer in the documentation
  76. and/or other materials provided with the distribution.
  77. 3. None of the names of Stephen John Machin, Lingfo Pty Ltd and any
  78. contributors may be used to endorse or promote products derived from this
  79. software without specific prior written permission.
  80. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  81. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  82. THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  83. PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
  84. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  85. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  86. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  87. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  88. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  89. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  90. THE POSSIBILITY OF SUCH DAMAGE.
  91. """
  92. """
  93. Copyright (C) 2005 Roman V. Kiseliov
  94. All rights reserved.
  95. Redistribution and use in source and binary forms, with or without
  96. modification, are permitted provided that the following conditions
  97. are met:
  98. 1. Redistributions of source code must retain the above copyright
  99. notice, this list of conditions and the following disclaimer.
  100. 2. Redistributions in binary form must reproduce the above copyright
  101. notice, this list of conditions and the following disclaimer in
  102. the documentation and/or other materials provided with the
  103. distribution.
  104. 3. All advertising materials mentioning features or use of this
  105. software must display the following acknowledgment:
  106. "This product includes software developed by
  107. Roman V. Kiseliov <roman@kiseliov.ru>."
  108. 4. Redistributions of any form whatsoever must retain the following
  109. acknowledgment:
  110. "This product includes software developed by
  111. Roman V. Kiseliov <roman@kiseliov.ru>."
  112. THIS SOFTWARE IS PROVIDED BY Roman V. Kiseliov ``AS IS'' AND ANY
  113. EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  114. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  115. PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Roman V. Kiseliov OR
  116. ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  117. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  118. NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  119. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  120. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  121. STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  122. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  123. OF THE POSSIBILITY OF SUCH DAMAGE.
  124. Roman V. Kiseliov
  125. Russia
  126. Kursk
  127. Libknecht St., 4
  128. +7(0712)56-09-83
  129. <roman@kiseliov.ru>
  130. Subject: pyExcelerator