Skip to content

Commit

Permalink
take a page out of @sigmavirus42's book
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethreitz committed May 25, 2017
1 parent 9fbfd22 commit 7abfd92
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,19 +62,19 @@ def run_tests(self):
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='[email protected]',
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',
Expand Down

0 comments on commit 7abfd92

Please sign in to comment.