credits.rst 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. Licensing and credits
  2. =====================
  3. .. _licence:
  4. Licence
  5. -------
  6. The software is distributed under an MIT licence. The text is as follows
  7. (from ``LICENSE.txt``)::
  8. Copyright (c) 2013-2016 Python Charmers Pty Ltd, Australia
  9. Permission is hereby granted, free of charge, to any person obtaining a copy
  10. of this software and associated documentation files (the "Software"), to deal
  11. in the Software without restriction, including without limitation the rights
  12. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  13. copies of the Software, and to permit persons to whom the Software is
  14. furnished to do so, subject to the following conditions:
  15. The above copyright notice and this permission notice shall be included in
  16. all copies or substantial portions of the Software.
  17. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  20. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  21. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  22. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  23. THE SOFTWARE.
  24. .. _sponsor:
  25. Sponsor
  26. -------
  27. Python Charmers Pty Ltd, Australia, and Python Charmers Pte Ltd, Singapore.
  28. http://pythoncharmers.com
  29. .. _authors:
  30. Authors
  31. -------
  32. Python-Future is written and maintained by Ed Schofield with the help of
  33. various contributors:
  34. Development Lead
  35. ~~~~~~~~~~~~~~~~
  36. - Ed Schofield <ed@pythoncharmers.com>
  37. Patches
  38. ~~~~~~~
  39. - Jacob Beck
  40. - Denis Cornehl
  41. - Nicolas Delaby
  42. - Corey Farwell
  43. - Eric Firing
  44. - Michael Joseph
  45. - Waldemar Kornewald
  46. - Alexey Kotlyarov
  47. - Lion Krischer
  48. - Marcin Kuzminski
  49. - Joshua Landau
  50. - German Larrain
  51. - Chris Lasher
  52. - Elliott Sales de Andrade
  53. - Tim Shaffer
  54. - Daniel Szoska
  55. - Jeff Tratner
  56. - Tim Tröndle
  57. - Brad Walker
  58. - Mystic-Mirage (GitHub)
  59. - str4d (GitHub)
  60. - 9seconds (GitHub)
  61. - Varriount (GitHub)
  62. Suggestions and Feedback
  63. ~~~~~~~~~~~~~~~~~~~~~~~~
  64. - Chris Adams
  65. - Martijn Faassen
  66. - Lion Krischer
  67. - Danielle Madeley
  68. - Val Markovic
  69. - wluebbe (GitHub)
  70. Other Credits
  71. -------------
  72. - The backported ``super()`` and ``range()`` functions are derived from Ryan
  73. Kelly's ``magicsuper`` module and Dan Crosta's ``xrange`` module.
  74. - The ``futurize`` and ``pasteurize`` scripts use ``lib2to3``, ``lib3to2``, and
  75. parts of Armin Ronacher's ``python-modernize`` code.
  76. - The ``python_2_unicode_compatible`` decorator is from Django. The
  77. ``implements_iterator`` and ``with_metaclass`` decorators are from Jinja2.
  78. - The ``exec_`` function and some others in ``future.utils`` are from the
  79. ``six`` module by Benjamin Peterson.
  80. - The ``raise_`` and ``raise_with_traceback`` functions were contributed by
  81. Jeff Tratner.
  82. - A working version of ``raise_from`` was contributed by Varriount (GitHub).
  83. - Documentation is generated with `Sphinx <http://sphinx.pocoo.org>`_ using the
  84. ``sphinx-bootstrap`` theme.
  85. - ``past.translation`` is inspired by and borrows some code from Sanjay Vinip's
  86. ``uprefix`` module.