diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-03-30 20:05:58 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-03-30 20:05:58 -0400 |
| commit | f75834bbb628466d01c35775906f49c133901745 (patch) | |
| tree | dd0e6c232cbd19c1796da86f543bc530f117283e | |
| parent | d2acf9eb3c1a0bda6f1db9e8b6da0fcea4396d54 (diff) | |
| download | external_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.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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/', |
