diff options
| author | Cody Logan <clpo13@gmail.com> | 2019-10-02 15:49:05 -0700 |
|---|---|---|
| committer | Cody Logan <clpo13@gmail.com> | 2019-10-02 15:49:05 -0700 |
| commit | b4dbe9a836ba6cf8f7df9688cf9529ccb217089c (patch) | |
| tree | 0c02df43877e092605d1c64aef6dbe0031d43ef2 | |
| parent | c96247f3613546b64fa6e9b02fe4cf406d7d7112 (diff) | |
| download | wikiget-b4dbe9a836ba6cf8f7df9688cf9529ccb217089c.tar.gz wikiget-b4dbe9a836ba6cf8f7df9688cf9529ccb217089c.zip | |
Shorten the repository namev0.2.1
| -rw-r--r-- | README.md | 6 | ||||
| -rw-r--r-- | setup.py | 4 | ||||
| -rw-r--r-- | wikiget/version.py | 2 | ||||
| -rw-r--r-- | wikiget/wikiget.py | 2 |
4 files changed, 7 insertions, 7 deletions
@@ -1,6 +1,6 @@ # wikiget -[](https://travis-ci.org/clpo13/python-wikiget) +[](https://travis-ci.org/clpo13/wikiget) [](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 @@ -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) |
