summaryrefslogtreecommitdiff
path: root/setup.py
blob: 3109357632b6076fe6aee29f47bf51fccce9edf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python

from distutils.core import setup

setup(name='pystache',
      version='0.1.0',
      description='Mustache for Python',
      author='Chris Wanstrath',
      author_email='chris@ozmm.org',
      url='http://github.com/defunkt/pystache',
      packages=['pystache'],
      license='MIT'
     )