File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change
1
+ include LICENSE
1
2
include HISTORY.rst README.rst
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
+ """
3
+ Run the following to publish to PyPI:
4
+
5
+ > python setup.py publish
6
+
7
+ """
2
8
3
9
import os
4
10
import sys
@@ -17,15 +23,15 @@ def publish():
17
23
sys .exit ()
18
24
19
25
setup (name = 'pystache' ,
20
- version = '0.3.1 ' ,
26
+ version = '0.4.0 ' ,
21
27
description = 'Mustache for Python' ,
22
28
long_description = open ('README.rst' ).read () + '\n \n ' + open ('HISTORY.rst' ).read (),
23
29
author = 'Chris Wanstrath' ,
24
30
author_email = 'chris@ozmm.org' ,
25
31
url = 'http://github.com/defunkt/pystache' ,
26
32
packages = ['pystache' ],
27
33
license = 'MIT' ,
28
- classifiers = (
34
+ classifiers = (
29
35
"Development Status :: 4 - Beta" ,
30
36
"License :: OSI Approved :: MIT License" ,
31
37
"Programming Language :: Python" ,
You can’t perform that action at this time.
0 commit comments