#!/usr/bin/env python

from setuptools import setup, find_packages

setup(
    name = 'texttemplate',
    version = '0.2.0',
    description = 'Text templating module',
    author = 'HAS',
    author_email = '', # hamish.sanderson@virgin.net
    url='http://freespace.virgin.net/hamish.sanderson/index.html',
    license = 'LGPL 2.1 or any later version',
    platforms = ['any'],
    long_description = 'texttemplate converts text templates into simple Python-based object models easily manipulated from ordinary Python code. Fast, powerful and easy to use.',
    
    packages = ['texttemplate'],
    
    include_package_data = True,
)
