diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2021-10-01 15:12:46 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2021-10-01 22:04:36 -0400 |
commit | 985c5d0c811987a9d4d9fff712169e5125acc95a (patch) | |
tree | 0039ec3ea3c9ddf3aee64aa6a868eac0c32ca362 /setup.py | |
parent | 6359fb16d4d31a0ae1cdca865dd428334023a363 (diff) | |
download | paramiko-985c5d0c811987a9d4d9fff712169e5125acc95a.tar.gz |
README / www-index overhaul
- Nuke old README in its entirety:
- We don't want people using demos if possible, stop advertising them
- Nix a bunch of bits that will now be replaced by standard PyPI sidebar links (docs, tests etc)
- Ditto the 'headers', most of that stuff is either PyPI metadata or the about to be added shields.io badges
- Some stuff deleted was also just old, eg IRC is no longer a support channel and I think librelist is dead too
- Rip out www site index for use as README and inject back in via
include
- Rewrite a bunch of that too for clarity
- Leverage it in long_description too
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 10 |
1 files changed, 1 insertions, 9 deletions
@@ -24,15 +24,7 @@ if sys.platform == "darwin": setup_helper.install_custom_make_tarball() -text = open("README.rst").read() -long_description = """ -To find out what's new in this version of Paramiko, please see `the changelog -<https://www.paramiko.org/changelog.html#{}>`_. - -{} -""".format( - version, text -) +long_description = open("README.rst").read() # Version info -- read without importing _locals = {} |