File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -348,9 +348,8 @@ def run(self):
348
348
349
349
350
350
try :
351
- import pypandoc
352
- long_description = pypandoc .convert_file ("README.md" , "rst" )
353
- long_description = "\n " .join (line for line in long_description .splitlines () if "<#" not in line )
351
+ with open (os .path .join (SCRIPT_DIR , 'README.md' ), encoding = 'utf-8' ) as f :
352
+ long_description = f .read ()
354
353
except :
355
354
long_description = ""
356
355
@@ -360,6 +359,7 @@ def run(self):
360
359
install_requires = ["cython" , "numpy" ],
361
360
description = "The Dynamic Neural Network Toolkit" ,
362
361
long_description = long_description ,
362
+ long_description_content_type = "text/markdown" ,
363
363
classifiers = [
364
364
"Development Status :: 5 - Production/Stable" ,
365
365
"Environment :: Console" ,
You can’t perform that action at this time.
0 commit comments