File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,6 +31,9 @@ def extensions():
3131 return cythonize ([ext ])
3232
3333
34+ with open ("README.md" , "r" ) as fh :
35+ long_description = fh .read ()
36+
3437configuration = {
3538 'name' : 'pyrevolve' ,
3639 'packages' : ["pyrevolve" ],
@@ -39,10 +42,8 @@ def extensions():
3942 'version' : versioneer .get_version (),
4043 'cmdclass' : versioneer .get_cmdclass (),
4144 'description' : "Python wrapper for Revolve checkpointing" ,
42- 'long_description' : """pyrevolve is a python(ic) wrapper for
43- the Revolve utility from the Griewank(2000) for optimal
44- checkpointing. This is designed to work with existing
45- code with minimal changes.""" ,
45+ 'long_description' : long_description ,
46+ 'long_description_content_type' : 'text/markdown' ,
4647 'url' : 'https://github.com/opesci/pyrevolve/' ,
4748 'author' : "Imperial College London" ,
4849 'author_email' : 'opesci@imperial.ac.uk' ,
You can’t perform that action at this time.
0 commit comments