Skip to content

Commit

Permalink
Merge pull request #33 from opesci/compressionV2
Browse files Browse the repository at this point in the history
Push README to PyPI
  • Loading branch information
navjotk authored Mar 15, 2019
2 parents 86d884e + 04cb9ff commit 16c5e26
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ def extensions():
return cythonize([ext])


with open("README.md", "r") as fh:
long_description = fh.read()

configuration = {
'name': 'pyrevolve',
'packages': ["pyrevolve"],
Expand All @@ -39,10 +42,8 @@ def extensions():
'version': versioneer.get_version(),
'cmdclass': versioneer.get_cmdclass(),
'description': "Python wrapper for Revolve checkpointing",
'long_description': """pyrevolve is a python(ic) wrapper for
the Revolve utility from the Griewank(2000) for optimal
checkpointing. This is designed to work with existing
code with minimal changes.""",
'long_description': long_description,
'long_description_content_type': 'text/markdown',
'url': 'https://github.com/opesci/pyrevolve/',
'author': "Imperial College London",
'author_email': '[email protected]',
Expand Down

0 comments on commit 16c5e26

Please sign in to comment.