diff options
| author | Cody Logan <clpo13@gmail.com> | 2020-01-03 11:21:24 -0800 |
|---|---|---|
| committer | Cody Logan <clpo13@gmail.com> | 2020-01-03 11:21:24 -0800 |
| commit | d01f228c202b8379cbff13b221d9f25a03c668fd (patch) | |
| tree | 360c02bd8cf44496a1727a308a72b1433f872216 /setup.py | |
| parent | 80de3d14325a15bf30f1d6863d996a4dd0d87e0f (diff) | |
| download | wikiget-d01f228c202b8379cbff13b221d9f25a03c668fd.tar.gz wikiget-d01f228c202b8379cbff13b221d9f25a03c668fd.zip | |
Temporarily revert "Drop support for Python 2."
This reverts commit 3c2d03f02e644b8afc5178f7c1a11d50d6b21118.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 56 |
1 files changed, 27 insertions, 29 deletions
@@ -1,5 +1,5 @@ # wikiget - CLI tool for downloading files from Wikimedia sites -# Copyright (C) 2018, 2019, 2020 Cody Logan +# Copyright (C) 2018, 2019 Cody Logan # SPDX-License-Identifier: GPL-3.0-or-later # # Wikiget is free software: you can redistribute it and/or modify @@ -23,47 +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 :: 3', - '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='>=3.5', - install_requires=['future', 'mwclient>=0.10.0', 'pytest-runner', - 'requests', 'tqdm'], - tests_require=['pytest'], + 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"], 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', ], }, |
