aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md6
-rw-r--r--setup.py4
-rw-r--r--wikiget/version.py2
-rw-r--r--wikiget/wikiget.py2
4 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index 51afc9e..5335811 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# wikiget
-[![Build Status](https://travis-ci.org/clpo13/python-wikiget.svg?branch=master)](https://travis-ci.org/clpo13/python-wikiget)
+[![Build Status](https://travis-ci.org/clpo13/wikiget.svg?branch=master)](https://travis-ci.org/clpo13/wikiget)
[![PyPI version](https://badge.fury.io/py/wikiget.svg)](https://badge.fury.io/py/wikiget)
Something like wget for downloading a file from MediaWiki sites (like Wikipedia
@@ -59,8 +59,8 @@ like venv or [virtualenv](https://virtualenv.pypa.io/en/latest/)) to
install dependencies:
```bash
-git clone https://github.com/clpo13/python-wikiget.git
-cd python-wikiget
+git clone https://github.com/clpo13/wikiget.git # if you plan on submitting pull requests, fork the repo instead
+cd wikiget
# Python 2 or 3
pip install --user virtualenv
diff --git a/setup.py b/setup.py
index a936906..af030b3 100644
--- a/setup.py
+++ b/setup.py
@@ -38,7 +38,7 @@ setup(
description="CLI tool for downloading files from MediaWiki sites",
long_description=long_description,
long_description_content_type="text/markdown",
- url="https://github.com/clpo13/python-wikiget",
+ url="https://github.com/clpo13/wikiget",
keywords="download mediawiki wikimedia wikipedia",
packages=find_packages(),
classifiers=[
@@ -58,7 +58,7 @@ setup(
install_requires=["future", "mwclient>=0.10.0", "pytest-runner", "requests", "tqdm"],
tests_require=["pytest"],
project_urls={
- "Bug Reports": "https://github.com/clpo13/python-wikiget/issues",
+ "Bug Reports": "https://github.com/clpo13/wikiget/issues",
},
entry_points={
"console_scripts": [
diff --git a/wikiget/version.py b/wikiget/version.py
index 456318a..0958641 100644
--- a/wikiget/version.py
+++ b/wikiget/version.py
@@ -1,3 +1,3 @@
"""Sets the program version in setup.py and on the command line."""
-__version__ = "0.2.0"
+__version__ = "0.2.1"
diff --git a/wikiget/wikiget.py b/wikiget/wikiget.py
index 8d58ec0..8bcd3fd 100644
--- a/wikiget/wikiget.py
+++ b/wikiget/wikiget.py
@@ -41,7 +41,7 @@ from wikiget.version import __version__
BLOCKSIZE = 65536
DEFAULT_SITE = "en.wikipedia.org"
-USER_AGENT = "wikiget/{} (https://github.com/clpo13/python-wikiget) " \
+USER_AGENT = "wikiget/{} (https://github.com/clpo13/wikiget) " \
"mwclient/{}".format(__version__, mwclient_version)