METADATA 1.1 KB

123456789101112131415161718192021222324252627282930
  1. Metadata-Version: 2.0
  2. Name: Tempita
  3. Version: 0.5.2
  4. Summary: A very small text templating language
  5. Home-page: http://pythonpaste.org/tempita/
  6. Author: Ian Bicking
  7. Author-email: ianb@colorstudy.com
  8. License: MIT
  9. Keywords: templating template language html
  10. Platform: UNKNOWN
  11. Classifier: Development Status :: 4 - Beta
  12. Classifier: Intended Audience :: Developers
  13. Classifier: License :: OSI Approved :: MIT License
  14. Classifier: Topic :: Text Processing
  15. Classifier: Programming Language :: Python :: 2
  16. Classifier: Programming Language :: Python :: 3
  17. Tempita is a small templating language for text substitution.
  18. This isn't meant to be the Next Big Thing in templating; it's just a
  19. handy little templating language for when your project outgrows
  20. ``string.Template`` or ``%`` substitution. It's small, it embeds
  21. Python in strings, and it doesn't do much else.
  22. You can read about the `language
  23. <http://pythonpaste.org/tempita/#the-language>`_, the `interface
  24. <http://pythonpaste.org/tempita/#the-interface>`_, and there's nothing
  25. more to learn about it.