From c8138f41c3a89523502d57d95f1da30c9d211b9e Mon Sep 17 00:00:00 2001 From: talos Date: Tue, 28 Feb 2012 21:24:13 -0500 Subject: updating manifest to 0.4.0 to reflect history.rst --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ad9981f..db4b45b 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ if sys.argv[-1] == "publish": sys.exit() setup(name='pystache', - version='0.3.1', + version='0.4.0', description='Mustache for Python', long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(), author='Chris Wanstrath', -- cgit v1.2.1 From 856261bd85a862112bd26a87775d0e1635018a68 Mon Sep 17 00:00:00 2001 From: Chris Jerdonek Date: Thu, 8 Mar 2012 02:53:33 -0800 Subject: Include the LICENSE file in the distribution (per the license). :) --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index 6f910d1..c53247f 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,2 @@ +include LICENSE include HISTORY.rst README.rst -- cgit v1.2.1 From f5217e1dc07b372b48ac73963acf0745a01674ad Mon Sep 17 00:00:00 2001 From: Chris Jerdonek Date: Thu, 8 Mar 2012 03:01:42 -0800 Subject: Added a module docstring to setup.py. --- setup.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index db4b45b..5ec959b 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,10 @@ #!/usr/bin/env python +""" +Run the following to publish to PyPI: + +> python setup.py publish + +""" import os import sys @@ -25,7 +31,7 @@ setup(name='pystache', url='http://github.com/defunkt/pystache', packages=['pystache'], license='MIT', - classifiers = ( + classifiers = ( "Development Status :: 4 - Beta", "License :: OSI Approved :: MIT License", "Programming Language :: Python", -- cgit v1.2.1