From: noah morrison Date: Tue, 18 Nov 2014 21:40:01 +0000 (-0500) Subject: Added setup.py for pip installs X-Git-Url: https://git.devinivas.org/?a=commitdiff_plain;h=c475ef067fe832488d639943a232efba0897366b;p=chevron.git Added setup.py for pip installs --- diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..3e51510 --- /dev/null +++ b/setup.py @@ -0,0 +1,16 @@ +#!/usr/bin/python + +from distutils.core import setup + +setup(name='chevron', + version='0.1', + license='MIT', + description='Mustache templating language renderer', + author='noah morrison', + author_email='noah@morrison.ph', + url='https://github.com/noahmorrison/chevron', + packages=['chevron'], + entry_points = { + 'console_scripts': ['chevron=chevron:cli_main'] + } + )