METADATA 3.0 KB

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