Add the cheetah-analyze script to the mix

This commit is contained in:
R. Tyler Ballance 2009-11-18 19:32:55 -08:00
parent b49163a592
commit 0fca88e647
2 changed files with 9 additions and 2 deletions

View File

@ -49,9 +49,10 @@ ext_modules=[
]
## Data Files and Scripts
scripts = ['bin/cheetah-compile',
scripts = ('bin/cheetah-compile',
'bin/cheetah',
]
'bin/cheetah-analyze',
)
data_files = ['recursive: cheetah *.tmpl *.txt LICENSE README TODO CHANGES',]

6
bin/cheetah-analyze Normal file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env python
from Cheetah import DirectiveAnalyzer
if __name__ == '__main__':
DirectiveAnalyzer.main()