diff options
author | Adam Spiers <git@adamspiers.org> | 2018-05-16 16:39:57 +0100 |
---|---|---|
committer | Adam Spiers <git@adamspiers.org> | 2018-05-16 16:42:49 +0100 |
commit | 02e79d29f71feb795779d97825644ad4172598ad (patch) | |
tree | 01abbbeea250e834c35bed73ac84934c52705ae8 | |
parent | 26841ee8d610abcefa91142253f48959b2222889 (diff) | |
download | git-deps-1.0.0rc3.tar.gz |
try using setuptools-markdown to fix the long_description1.0.0rc3
-rw-r--r-- | setup.py | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -15,8 +15,15 @@ from setuptools import setup def setup_package(): needs_sphinx = {'build_sphinx', 'upload_docs'}.intersection(sys.argv) sphinx = ['sphinx'] if needs_sphinx else [] - setup(setup_requires=['six', 'pyscaffold>=2.5a0,<2.6a0'] + sphinx, - use_pyscaffold=True) + setup( + setup_requires=[ + 'six', + 'pyscaffold>=2.5a0,<2.6a0', + 'setuptools-markdown', + ] + sphinx, + long_description_markdown_filename='README.md', + use_pyscaffold=True + ) if __name__ == "__main__": |