From f75834bbb628466d01c35775906f49c133901745 Mon Sep 17 00:00:00 2001 From: Mike Bayer <mike_mp@zzzcomputing.com> Date: Fri, 30 Mar 2012 20:05:58 -0400 Subject: [PATCH] - fix the readme in setup.py and fix weird keywords --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 6438750..07b350e 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ v = open(os.path.join(os.path.dirname(__file__), 'mako', '__init__.py')) VERSION = re.compile(r".*__version__ = '(.*?)'", re.S).match(v.read()).group(1) v.close() -readme = os.path.join(os.path.dirname(__file__), 'README.rst') +readme = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() setup(name='Mako', version=VERSION, @@ -30,7 +30,7 @@ setup(name='Mako', "Programming Language :: Python :: Implementation :: PyPy", 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ], - keywords='wsgi myghty mako', + keywords='templates', author='Mike Bayer', author_email='mike@zzzcomputing.com', url='http://www.makotemplates.org/', -- GitLab