-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
19 lines (17 loc) · 841 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
from distutils.core import setup
setup(name='wikitools',
version='1.1.1',
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.16 and higher, should work on 1.13, older
versions may have bugs.
The edit-API must be enabled on the site to use editing features.
Please report any bugs to <http://code.google.com/p/python-wikitools/issues>""",
author='Alex Z. (User:Mr.Z-man @ en.wikipedia)',
author_email='[email protected]',
url='http://code.google.com/p/python-wikitools/',
license='GPL v3',
packages=['wikitools'],
package_data={'wikitools': ['wikitools/COPYING', 'wikitools/README', 'wikitools/CHANGELOG']},
)