Skip to content

Commit 16c5e26

Browse files
authored
Merge pull request #33 from opesci/compressionV2
Push README to PyPI
2 parents 86d884e + 04cb9ff commit 16c5e26

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff 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+
3437
configuration = {
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',

0 commit comments

Comments
 (0)