diff --git a/MANIFEST.in b/MANIFEST.in index b0531ca..2cc478c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,2 @@ -include README CHANGELOG +include README.md CHANGELOG graft wikitools diff --git a/setup.py b/setup.py index 80920b3..ae645ff 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from distutils.core import setup setup(name='wikitools', - version='1.2', + version='1.4', description='Python package for interacting with a MediaWiki wiki', long_description = """A Python package for interacting with a MediaWiki wiki using the MediaWiki API. Designed for MediaWiki version 1.20 and higher, should work on 1.13+. diff --git a/wikitools/wiki.py b/wikitools/wiki.py index b5eb878..5f76122 100644 --- a/wikitools/wiki.py +++ b/wikitools/wiki.py @@ -49,7 +49,7 @@ def __or__(self, other): def __ror__(self, other): return '|'.join([str(other), str(self)]) -VERSION = '1.3' +VERSION = '1.4' class Wiki: """A Wiki site"""