File tree Expand file tree Collapse file tree 3 files changed +4
-9
lines changed
Expand file tree Collapse file tree 3 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 33clean :
44 rm -rf dist build * .egg-info tests/tempdir
55
6- # Dist requires Python 3, the binary pandoc & the pip packages wheel & pypandoc
6+ # Dist requires Python 3 & the pip package wheel
77dist :
88 python setup.py sdist bdist_wheel
99
Original file line number Diff line number Diff line change 1- __version__ = '0.0.4 '
1+ __version__ = '0.1.0 '
22
33import os
44import re
Original file line number Diff line number Diff line change 55
66import gitsecrets
77
8- # borrowed conversion process from
9- # https://stackoverflow.com/questions/26737222/pypi-description-markdown-doesnt-work
10- try :
11- import pypandoc
12- long_description = pypandoc .convert ('README.md' , 'rst' )
13- except (IOError , ImportError ):
14- long_description = open ('README.md' ).read ()
8+ long_description = open ('README.md' ).read ()
159
1610setup (name = "python-git-secrets" ,
1711 version = gitsecrets .__version__ ,
1812 description = "Python implementation of git-secrets" ,
1913 long_description = long_description ,
14+ long_description_content_type = "text/markdown" ,
2015 url = "https://github.com/mbacchi/python-git-secrets" ,
2116 author = 'Matt Bacchi' ,
2217 author_email = 'mbacchi@gmail.com' ,
You can’t perform that action at this time.
0 commit comments