From 7abfd92aeaeba82e1c527460b539667844fbb557 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 25 May 2017 11:46:12 -0400 Subject: [PATCH] take a page out of @sigmavirus42's book --- setup.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index fdc33fce..534b23aa 100755 --- a/setup.py +++ b/setup.py @@ -62,19 +62,19 @@ with open('HISTORY.rst', 'r', 'utf-8') as f: history = f.read() setup( - name='requests', + name=about['__title__'], version=about['__version__'], - description='Python HTTP for Humans.', + description=about['__description__'], long_description=readme + '\n\n' + history, - author='Kenneth Reitz', - author_email='me@kennethreitz.com', - url='http://python-requests.org', + author=about['__author__'], + author_email=about['__author_email__'], + url=about['__url__'], packages=packages, package_data={'': ['LICENSE', 'NOTICE'], 'requests': ['*.pem']}, package_dir={'requests': 'requests'}, include_package_data=True, install_requires=requires, - license='Apache 2.0', + license=about['__license__'], zip_safe=False, classifiers=( 'Development Status :: 5 - Production/Stable',