Skip to content

Commit

Permalink
Merge pull request #108 from hugovk/long_description
Browse files Browse the repository at this point in the history
Use README.md as description on PyPI
  • Loading branch information
Anorov authored Jul 24, 2018
2 parents d2aea5a + cbf4c5d commit b687a34
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,15 @@
# Required due to missing socket.inet_ntop & socket.inet_pton method in Windows Python 2.x
requirements.append("win-inet-pton")

with open('README.md') as f:
long_description = f.read()

setup(
name = "PySocks",
version = VERSION,
description = "A Python SOCKS client module. See https://github.com/Anorov/PySocks for more information.",
long_description=long_description,
long_description_content_type='text/markdown',
url = "https://github.com/Anorov/PySocks",
license = "BSD",
author = "Anorov",
Expand Down

0 comments on commit b687a34

Please sign in to comment.