We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a885da1 commit 72739e1Copy full SHA for 72739e1
setup.py
@@ -72,6 +72,10 @@ def find_libxml2_include():
72
language="c++"),
73
]
74
75
+this_directory = os.path.abspath(os.path.dirname(__file__))
76
+with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
77
+ long_description = f.read()
78
+
79
setup(
80
name='extractnet',
81
version='1.0.4',
@@ -82,6 +86,8 @@ def find_libxml2_include():
82
86
license='MIT',
83
87
platforms='Posix; MacOS X',
84
88
keywords='automatic content extraction, web page dechroming, HTML parsing',
89
+ long_description=long_description,
90
+ long_description_content_type='text/markdown',
85
91
classifiers=[
92
'License :: OSI Approved :: MIT License',
93
'Development Status :: 5 - Production/Stable',
0 commit comments