]> Devi Nivas Git - chevron.git/commitdiff
Added setup.py for pip installs
authornoah morrison <noah@morrison.ph>
Tue, 18 Nov 2014 21:40:01 +0000 (16:40 -0500)
committernoah morrison <noah@morrison.ph>
Tue, 18 Nov 2014 21:40:01 +0000 (16:40 -0500)
setup.py [new file with mode: 0644]

diff --git a/setup.py b/setup.py
new file mode 100644 (file)
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']
+      }
+     )