| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 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 |
|---|