We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d2aea5a + cbf4c5d commit b687a34Copy full SHA for b687a34
setup.py
@@ -10,10 +10,15 @@
10
# Required due to missing socket.inet_ntop & socket.inet_pton method in Windows Python 2.x
11
requirements.append("win-inet-pton")
12
13
+with open('README.md') as f:
14
+ long_description = f.read()
15
+
16
setup(
17
name = "PySocks",
18
version = VERSION,
19
description = "A Python SOCKS client module. See https://github.com/Anorov/PySocks for more information.",
20
+ long_description=long_description,
21
+ long_description_content_type='text/markdown',
22
url = "https://github.com/Anorov/PySocks",
23
license = "BSD",
24
author = "Anorov",
0 commit comments