From: Harmon Date: Wed, 16 Oct 2019 14:23:01 +0000 (-0500) Subject: Make setup.py quotation mark type consistent X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=b22597dd1f27fe4454cdb873ac8afe7d3f72ba84;p=tweepy.git Make setup.py quotation mark type consistent --- diff --git a/setup.py b/setup.py index ed65bc0..044c643 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup(name="tweepy", author="Joshua Roesslein", author_email="tweepy@googlegroups.com", url="http://github.com/tweepy/tweepy", - packages=find_packages(exclude=['tests', 'examples']), + packages=find_packages(exclude=["tests", "examples"]), install_requires=[ "PySocks>=1.5.7", "requests>=2.11.1", @@ -43,18 +43,18 @@ setup(name="tweepy", "test": tests_require, }, keywords="twitter library", - python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*', + python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", classifiers=[ - 'Development Status :: 5 - Production/Stable', - 'Topic :: Software Development :: Libraries', - 'License :: OSI Approved :: MIT License', - 'Operating System :: OS Independent', - 'Programming Language :: Python', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', + "Development Status :: 5 - Production/Stable", + "Topic :: Software Development :: Libraries", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", ], zip_safe=True)