Make setup.py quotation mark type consistent
authorHarmon <Harmon758@gmail.com>
Wed, 16 Oct 2019 14:23:01 +0000 (09:23 -0500)
committerHarmon <Harmon758@gmail.com>
Wed, 16 Oct 2019 14:23:01 +0000 (09:23 -0500)
setup.py

index ed65bc0065c2bf560c8298131d04cf247962e310..044c643f951f03b13dbc6cb82a32da3afa34dfa3 100644 (file)
--- 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)