You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
907 B

4 years ago
  1. Metadata-Version: 2.1
  2. Name: pycparser
  3. Version: 2.19
  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.