METADATA 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. Metadata-Version: 2.1
  2. Name: pycparser
  3. Version: 2.21
  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
  10. Platform: Cross Platform
  11. Classifier: Development Status :: 5 - Production/Stable
  12. Classifier: License :: OSI Approved :: BSD License
  13. Classifier: Programming Language :: Python :: 2
  14. Classifier: Programming Language :: Python :: 2.7
  15. Classifier: Programming Language :: Python :: 3
  16. Classifier: Programming Language :: Python :: 3.4
  17. Classifier: Programming Language :: Python :: 3.5
  18. Classifier: Programming Language :: Python :: 3.6
  19. Classifier: Programming Language :: Python :: 3.7
  20. Classifier: Programming Language :: Python :: 3.8
  21. Classifier: Programming Language :: Python :: 3.9
  22. Classifier: Programming Language :: Python :: 3.10
  23. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
  24. pycparser is a complete parser of the C language, written in
  25. pure Python using the PLY parsing library.
  26. It parses C code into an AST and can serve as a front-end for
  27. C compilers or analysis tools.