METADATA 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. Metadata-Version: 2.1
  2. Name: gast
  3. Version: 0.6.0
  4. Summary: Python AST that abstracts the underlying Python version
  5. Home-page: https://github.com/serge-sans-paille/gast/
  6. Author: serge-sans-paille
  7. Author-email: serge.guelton@telecom-bretagne.eu
  8. License: BSD 3-Clause
  9. Classifier: Development Status :: 4 - Beta
  10. Classifier: Environment :: Console
  11. Classifier: Intended Audience :: Developers
  12. Classifier: License :: OSI Approved :: BSD License
  13. Classifier: Natural Language :: English
  14. Classifier: Programming Language :: Python :: 2
  15. Classifier: Programming Language :: Python :: 2.7
  16. Classifier: Programming Language :: Python :: 3
  17. Classifier: Programming Language :: Python :: 3.4
  18. Classifier: Programming Language :: Python :: 3.5
  19. Classifier: Programming Language :: Python :: 3.6
  20. Classifier: Programming Language :: Python :: 3.7
  21. Classifier: Programming Language :: Python :: 3.8
  22. Classifier: Programming Language :: Python :: 3.9
  23. Classifier: Programming Language :: Python :: 3.10
  24. Classifier: Programming Language :: Python :: 3.11
  25. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
  26. License-File: LICENSE
  27. A generic AST to represent Python2 and Python3's Abstract Syntax Tree(AST).
  28. GAST provides a compatibility layer between the AST of various Python versions,
  29. as produced by ``ast.parse`` from the standard ``ast`` module.