METADATA 943 B

12345678910111213141516171819202122232425262728
  1. Metadata-Version: 2.1
  2. Name: pycparser
  3. Version: 2.22
  4. Summary: C parser in Python
  5. Home-page: https://github.com/eliben/pycparser
  6. Author: Eli Bendersky
  7. Author-email: eliben@gmail.com
  8. Maintainer: Eli Bendersky
  9. License: BSD-3-Clause
  10. Platform: Cross Platform
  11. Classifier: Development Status :: 5 - Production/Stable
  12. Classifier: License :: OSI Approved :: BSD License
  13. Classifier: Programming Language :: Python :: 3
  14. Classifier: Programming Language :: Python :: 3.8
  15. Classifier: Programming Language :: Python :: 3.9
  16. Classifier: Programming Language :: Python :: 3.10
  17. Classifier: Programming Language :: Python :: 3.11
  18. Classifier: Programming Language :: Python :: 3.12
  19. Requires-Python: >=3.8
  20. License-File: LICENSE
  21. pycparser is a complete parser of the C language, written in
  22. pure Python using the PLY parsing library.
  23. It parses C code into an AST and can serve as a front-end for
  24. C compilers or analysis tools.