Skip to content

Commit 652b6cc

Browse files
committed
Merge branch 'v0.4.0-prep' into master (issue #83)
v0.4.0 should now be ready to push to PyPI.
2 parents 7ccb55f + f5217e1 commit 652b6cc

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
include LICENSE
12
include HISTORY.rst README.rst

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
#!/usr/bin/env python
2+
"""
3+
Run the following to publish to PyPI:
4+
5+
> python setup.py publish
6+
7+
"""
28

39
import os
410
import sys
@@ -17,15 +23,15 @@ def publish():
1723
sys.exit()
1824

1925
setup(name='pystache',
20-
version='0.3.1',
26+
version='0.4.0',
2127
description='Mustache for Python',
2228
long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(),
2329
author='Chris Wanstrath',
2430
author_email='chris@ozmm.org',
2531
url='http://github.com/defunkt/pystache',
2632
packages=['pystache'],
2733
license='MIT',
28-
classifiers = (
34+
classifiers = (
2935
"Development Status :: 4 - Beta",
3036
"License :: OSI Approved :: MIT License",
3137
"Programming Language :: Python",

0 commit comments

Comments
 (0)