Improve setup.py formatting
authorHarmon <Harmon758@gmail.com>
Thu, 17 Oct 2019 19:57:27 +0000 (14:57 -0500)
committerHarmon <Harmon758@gmail.com>
Thu, 17 Oct 2019 19:57:27 +0000 (14:57 -0500)
setup.py

index 23a32437c25b818d91dbc032d6ac97336a40a600..9491c2ce496bc2bfa018efa13406ae25ab8f9c40 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -22,50 +22,52 @@ tests_require = [
     "vcrpy>=1.10.3",
 ]
 
-setup(name="tweepy",
-      version=version,
-      description="Twitter library for Python",
-      long_description=long_description,
-      long_description_content_type="text/markdown",
-      license="MIT",
-      author="Joshua Roesslein",
-      author_email="tweepy@googlegroups.com",
-      url="https://www.tweepy.org/",
-      project_urls={
-          "Documentation": "https://tweepy.readthedocs.io/",
-          "Issue Tracker": "https://github.com/tweepy/tweepy/issues",
-          "Source Code": "https://github.com/tweepy/tweepy",
-      },
-      download_url="https://pypi.org/project/tweepy/",
-      packages=find_packages(exclude=["tests", "examples"]),
-      install_requires=[
-          "requests[socks]>=2.11.1",
-          "requests_oauthlib>=0.7.0",
-          "six>=1.10.0",
-      ],
-      tests_require=tests_require,
-      extras_require={
-          "dev": [
-               "coveralls>=1.8.2",
-               "tox>=2.4.0",
-           ],
-          "test": tests_require,
-      },
-      test_suite="nose.collector",
-      keywords="twitter library",
-      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",
-          "Programming Language :: Python :: 3.8",
-      ],
-      zip_safe=True)
+setup(
+    name="tweepy",
+    version=version,
+    description="Twitter library for Python",
+    long_description=long_description,
+    long_description_content_type="text/markdown",
+    license="MIT",
+    author="Joshua Roesslein",
+    author_email="tweepy@googlegroups.com",
+    url="https://www.tweepy.org/",
+    project_urls={
+        "Documentation": "https://tweepy.readthedocs.io/",
+        "Issue Tracker": "https://github.com/tweepy/tweepy/issues",
+        "Source Code": "https://github.com/tweepy/tweepy",
+    },
+    download_url="https://pypi.org/project/tweepy/",
+    packages=find_packages(exclude=["tests", "examples"]),
+    install_requires=[
+        "requests[socks]>=2.11.1",
+        "requests_oauthlib>=0.7.0",
+        "six>=1.10.0",
+    ],
+    tests_require=tests_require,
+    extras_require={
+        "dev": [
+             "coveralls>=1.8.2",
+             "tox>=2.4.0",
+         ],
+        "test": tests_require,
+    },
+    test_suite="nose.collector",
+    keywords="twitter library",
+    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",
+        "Programming Language :: Python :: 3.8",
+    ],
+    zip_safe=True,
+)