mirror of
https://github.com/kennethreitz-archive/pystache.git
synced 2026-06-05 23:40:16 +00:00
14 lines
317 B
Python
14 lines
317 B
Python
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name='pystache',
|
|
version='0.2.0',
|
|
description='Mustache for Python',
|
|
author='Chris Wanstrath',
|
|
author_email='chris@ozmm.org',
|
|
url='http://github.com/defunkt/pystache',
|
|
packages=['pystache'],
|
|
license='MIT'
|
|
)
|