diff options
author | Hugo <hugovk@users.noreply.github.com> | 2018-04-28 15:35:17 +0300 |
---|---|---|
committer | Sybren A. Stüvel <sybren@stuvel.eu> | 2018-04-28 23:47:34 +0200 |
commit | 7d03fe40f8d136a3a90eeaf883e47a1c6bfc21f1 (patch) | |
tree | 341f61dbfc460974e3568550de0419a1edfdc1fa /setup.py | |
parent | 83e273b566343d4276e82d6f26c8a859f3ec048d (diff) | |
download | rsa-git-7d03fe40f8d136a3a90eeaf883e47a1c6bfc21f1.tar.gz |
Show README.md on PyPI
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -16,10 +16,15 @@ from setuptools import setup +with open('README.md') as f: + long_description = f.read() + if __name__ == '__main__': setup(name='rsa', version='4.0-alpha', description='Pure-Python RSA implementation', + long_description=long_description, + long_description_content_type='text/markdown', author='Sybren A. Stuvel', author_email='sybren@stuvel.eu', maintainer='Sybren A. Stuvel', |