-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from opesci/compressionV2
Push README to PyPI
- Loading branch information
Showing
1 changed file
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"], | ||
|
@@ -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]', | ||
|