METADATA 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. Metadata-Version: 2.1
  2. Name: cppy
  3. Version: 1.2.1
  4. Summary: UNKNOWN
  5. Home-page: https://github.com/nucleic/cppy
  6. Author-email: The Nucleic Development Team <sccolbert@gmail.com>
  7. Maintainer-email: "Matthieu C. Dartiailh" <m.dartiailh@gmail.com>
  8. License: Copyright (c) 2014, Nucleic
  9. All rights reserved.
  10. Redistribution and use in source and binary forms, with or without
  11. modification, are permitted provided that the following conditions are met:
  12. * Redistributions of source code must retain the above copyright notice, this
  13. list of conditions and the following disclaimer.
  14. * Redistributions in binary form must reproduce the above copyright notice,
  15. this list of conditions and the following disclaimer in the documentation
  16. and/or other materials provided with the distribution.
  17. * Neither the name of the copyright holder nor the names of its
  18. contributors may be used to endorse or promote products derived from
  19. this software without specific prior written permission.
  20. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  21. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  22. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  23. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  24. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  25. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  26. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  27. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  28. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  29. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. Project-URL: homepage, https://github.com/nucleic/cppy
  31. Project-URL: documentation, https://cppy.readthedocs.io/en/latest/
  32. Project-URL: repository, https://github.com/nucleic/cppy
  33. Project-URL: changelog, https://github.com/nucleic/cppy/blob/main/releasenotes.rst
  34. Platform: UNKNOWN
  35. Classifier: License :: OSI Approved :: BSD License
  36. Classifier: Programming Language :: Python
  37. Classifier: Programming Language :: Python :: 3
  38. Classifier: Programming Language :: Python :: 3.7
  39. Classifier: Programming Language :: Python :: 3.8
  40. Classifier: Programming Language :: Python :: 3.9
  41. Classifier: Programming Language :: Python :: 3.10
  42. Classifier: Programming Language :: Python :: Implementation :: CPython
  43. Requires-Python: >=3.7
  44. Description-Content-Type: text/x-rst
  45. License-File: LICENSE
  46. Cppy
  47. ====
  48. .. image:: https://github.com/nucleic/cppy/actions/workflows/ci.yml/badge.svg
  49. :target: https://github.com/nucleic/cppy/actions/workflows/ci.yml
  50. A small C++ header library which makes it easier to write Python extension
  51. modules. The primary feature is a PyObject smart pointer which automatically
  52. handles reference counting and provides convenience methods for performing
  53. common object operations.