aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorCody Logan <clpo13@gmail.com>2019-12-06 14:47:44 -0800
committerCody Logan <clpo13@gmail.com>2019-12-06 14:47:44 -0800
commit5f35b45b0b15e0f66608b9c774b76f39e7aa93ee (patch)
treeae5e812ae60fe287fd35d56b1884a637ca64acf0 /setup.py
parent8273f4cdc3a4ee67d936c2b0b06f3d5ee92c31bf (diff)
downloadwikiget-5f35b45b0b15e0f66608b9c774b76f39e7aa93ee.tar.gz
wikiget-5f35b45b0b15e0f66608b9c774b76f39e7aa93ee.zip
Switch to Wikimedia Commons as default site
Commons is intended as a repository for freely-usable media, so it makes more sense for it to be the default, and most images on Wikimedia sites (like English Wikipedia) are also available there. The functionality for specifying alternate sites is left in case users want to download fair-use media, which is not available on Commons, as well as for the possible future integration with non-Wikimedia MediaWiki sites (like Fandom/Wikia).
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py50
1 files changed, 25 insertions, 25 deletions
diff --git a/setup.py b/setup.py
index af030b3..759e4e4 100644
--- a/setup.py
+++ b/setup.py
@@ -23,45 +23,45 @@ from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
-with open(path.join(here, "README.md"), "r") as fr:
+with open(path.join(here, 'README.md'), 'r') as fr:
long_description = fr.read()
version = {}
-with open(path.join(here, "wikiget", "version.py"), "r") as fv:
+with open(path.join(here, 'wikiget', 'version.py'), 'r') as fv:
exec(fv.read(), version)
setup(
- name="wikiget",
- version=version["__version__"],
- author="Cody Logan",
- author_email="clpo13@gmail.com",
- description="CLI tool for downloading files from MediaWiki sites",
+ name='wikiget',
+ version=version['__version__'],
+ author='Cody Logan',
+ author_email='clpo13@gmail.com',
+ description='CLI tool for downloading files from MediaWiki sites',
long_description=long_description,
- long_description_content_type="text/markdown",
- url="https://github.com/clpo13/wikiget",
- keywords="download mediawiki wikimedia wikipedia",
+ long_description_content_type='text/markdown',
+ url='https://github.com/clpo13/wikiget',
+ keywords='download mediawiki wikimedia wikipedia',
packages=find_packages(),
classifiers=[
- "Development Status :: 4 - Beta",
- "Environment :: Console",
- "Intended Audience :: End Users/Desktop",
- "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
- "Operating System :: OS Independent",
- "Programming Language :: Python :: 2.7",
- "Programming Language :: Python :: 3.5",
- "Programming Language :: Python :: 3.6",
- "Programming Language :: Python :: 3.7",
- "Programming Language :: Python :: 3.8",
- "Topic :: Utilities",
+ 'Development Status :: 4 - Beta',
+ 'Environment :: Console',
+ 'Intended Audience :: End Users/Desktop',
+ 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
+ 'Operating System :: OS Independent',
+ 'Programming Language :: Python :: 2.7',
+ 'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
+ 'Programming Language :: Python :: 3.7',
+ 'Programming Language :: Python :: 3.8',
+ 'Topic :: Utilities',
],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
- install_requires=["future", "mwclient>=0.10.0", "pytest-runner", "requests", "tqdm"],
- tests_require=["pytest"],
+ install_requires=['future', 'mwclient>=0.10.0', 'pytest-runner', 'requests', 'tqdm'],
+ tests_require=['pytest'],
project_urls={
- "Bug Reports": "https://github.com/clpo13/wikiget/issues",
+ 'Bug Reports': 'https://github.com/clpo13/wikiget/issues',
},
entry_points={
- "console_scripts": [
+ 'console_scripts': [
'wikiget=wikiget.wikiget:main',
],
},