1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#!/usr/bin/env python
import sys, os
sys.path.insert(0, os.path.join(os.getcwd(),'lib'))
from distutils.core import setup
import simpletal
setup(name="SimpleTAL",
version= simpletal.__version__,
description="SimpleTAL is a stand alone Python implementation of the TAL, TALES and METAL specifications used in Zope to power HTML and XML templates.",
author="Colin Stewart",
author_email="colin@owlfish.com",
url="http://www.owlfish.com/software/simpleTAL/index.html",
packages=[
'simpletal',
],
package_dir = {'': 'lib'},
)
|