rename README.rst -> readme.rst

This commit is contained in:
Noah Levitt 2018-05-21 22:18:28 +00:00
parent 997d4341fe
commit b7ebc38491
3 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ setuptools.setup(
url='https://github.com/internetarchive/warcprox',
author='Noah Levitt',
author_email='nlevitt@archive.org',
long_description=open('README.rst').read(),
long_description=open('readme.rst').read(),
license='GPL',
packages=['warcprox'],
install_requires=deps,

View File

@ -193,7 +193,7 @@ def _build_arg_parser(prog='warcprox'):
action='append', help=(
'Qualified name of plugin class, e.g. "mypkg.mymod.MyClass". '
'May be used multiple times to register multiple plugins. '
'See README.rst for more information.'))
'See readme.rst for more information.'))
arg_parser.add_argument('--version', action='version',
version="warcprox {}".format(warcprox.__version__))
arg_parser.add_argument('-v', '--verbose', dest='verbose', action='store_true')