From c475ef067fe832488d639943a232efba0897366b Mon Sep 17 00:00:00 2001 From: noah morrison Date: Tue, 18 Nov 2014 16:40:01 -0500 Subject: [PATCH] Added setup.py for pip installs --- setup.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 setup.py 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'] + } + ) -- 2.47.3