aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-03-30 20:05:58 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-03-30 20:05:58 -0400
commitf75834bbb628466d01c35775906f49c133901745 (patch)
treedd0e6c232cbd19c1796da86f543bc530f117283e
parentd2acf9eb3c1a0bda6f1db9e8b6da0fcea4396d54 (diff)
downloadexternal_python_mako-f75834bbb628466d01c35775906f49c133901745.tar.gz
external_python_mako-f75834bbb628466d01c35775906f49c133901745.tar.bz2
external_python_mako-f75834bbb628466d01c35775906f49c133901745.zip
- fix the readme in setup.py and fix weird keywords
-rw-r--r--setup.py4
1 files 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/',