Files
pystache/setup.py
T
2009-11-12 22:29:37 -08:00

14 lines
315 B
Python

#!/usr/bin/env python
from distutils.core import setup
setup(name='Pystache',
version='1.0',
description='Mustache for Python',
author='Chris Wanstrath',
author_email='chris@ozmm.org',
url='http://github.com/defunkt/pystache',
packages=['pystache'],
license='MIT'
)