Commit 4ac53c96 by Chris Wanstrath

`python setup.py publish`

parent cfa229ff
#!/usr/bin/env python
import os
import sys
from distutils.core import setup
def publish():
"""Publish to Pypi"""
os.system("python setup.py sdist upload")
if sys.argv[-1] == "publish":
publish()
sys.exit()
setup(name='pystache',
version='0.2.0',
description='Mustache for Python',
......@@ -11,3 +24,4 @@ setup(name='pystache',
packages=['pystache'],
license='MIT'
)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment