Skip to content

Commit

Permalink
Merge pull request postmanlabs#462 from javabrett/setuptools-long-des…
Browse files Browse the repository at this point in the history
…cription

Added long_description for setuptools.
  • Loading branch information
kennethreitz authored Jul 4, 2018
2 parents d99d4e3 + 4eb372f commit 607ab22
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
import os
import io

# long_description = io.open(
# os.path.join(os.path.dirname(__file__), 'README.rst'), encoding='utf-8').read()

with open(os.path.join(os.path.realpath(os.path.dirname(__file__)), 'httpbin', 'VERSION')) as version_file:
version = version_file.read().strip()
Expand All @@ -12,7 +10,7 @@
name="httpbin",
version=version,
description="HTTP Request and Response Service",
# long_description=long_description,
long_description="A simple HTTP Request & Response Service, written in Python + Flask.",

# The project URL.
url='https://github.com/requests/httpbin',
Expand Down

0 comments on commit 607ab22

Please sign in to comment.