From 514775e85cedb3097659855ad6ea29a9d870b1d5 Mon Sep 17 00:00:00 2001 From: Harmon Date: Thu, 17 Oct 2019 14:57:27 -0500 Subject: [PATCH] Improve setup.py formatting --- setup.py | 96 +++++++++++++++++++++++++++++--------------------------- 1 file changed, 49 insertions(+), 47 deletions(-) diff --git a/setup.py b/setup.py index 23a3243..9491c2c 100644 --- 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, +) -- 2.25.1