METADATA 907 B

123456789101112131415161718192021222324252627
  1. Metadata-Version: 2.1
  2. Name: pycparser
  3. Version: 2.20
  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. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
  20. pycparser is a complete parser of the C language, written in
  21. pure Python using the PLY parsing library.
  22. It parses C code into an AST and can serve as a front-end for
  23. C compilers or analysis tools.