root/Cheetah/__init__.py

Revision f17b49bd2a9cb5c693518283252cdbca4d04136b, 1.0 kB (checked in by Jason Michalski <armooo@armooo.net>, 2 years ago)

Lets try the import again

  • Property mode set to 100644
Line 
1 #!/usr/bin/env python
2 # $Id: __init__.py,v 1.10 2006/01/14 04:44:07 tavis_rudd Exp $
3
4 """Cheetah is an open source template engine and code generation tool.
5
6 It can be used standalone or combined with other tools and frameworks. Web
7 development is its principle use, but Cheetah is very flexible and is also being
8 used to generate C++ game code, Java, sql, form emails and even Python code.
9
10 Homepage
11 ================================================================================
12 http://www.CheetahTemplate.org/
13
14 Documentation
15 ================================================================================
16 For a high-level introduction to Cheetah please refer to the User's Guide
17 at http://cheetahtemplate.org/learn.html
18
19 Mailing list
20 ================================================================================
21 cheetahtemplate-discuss@lists.sourceforge.net
22 Subscribe at http://lists.sourceforge.net/lists/listinfo/cheetahtemplate-discuss
23 """ 
24 __author__ = "Tavis Rudd <tavis@damnsimple.com>"
25 __revision__ = "$Revision: 1.10 $"[11:-2]
26
27 from Version import Version
Note: See TracBrowser for help on using the browser.