From: noah morrison Date: Sun, 25 Jan 2015 03:59:47 +0000 (-0500) Subject: Make setup.py more readable. X-Git-Url: https://git.devinivas.org/?a=commitdiff_plain;h=c6576bd92966ebe925f39262485f954176714489;p=chevron.git Make setup.py more readable. --- diff --git a/setup.py b/setup.py index 66f713c..28c17d0 100644 --- a/setup.py +++ b/setup.py @@ -8,18 +8,24 @@ except ImportError: import pypandoc readme = pypandoc.convert('README.md', 'rst') + setup(name='chevron', - version='0.7.1', + version='0.7.2', license='MIT', + description='Mustache templating language renderer', long_description=readme, + author='noah morrison', author_email='noah@morrison.ph', + url='https://github.com/noahmorrison/chevron', + packages=['chevron'], entry_points={ 'console_scripts': ['chevron=chevron:cli_main'] }, + classifiers=[ 'Development Status :: 4 - Beta',