Commit ecd1d102 authored by nimrod's avatar nimrod
Browse files

- First commit, works but very sparse.

parent 4bf67215
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
-   repo: git://github.com/pre-commit/pre-commit-hooks
    sha: 97b88d9610bcc03982ddac33caba98bb2b751f5f
    hooks:
    -   id: check-added-large-files
    -   id: check-json
    -   id: check-xml
    -   id: check-yaml
    -   id: check-merge-conflict
-   repo: https://www.shore.co.il/git/shell-pre-commit/
    sha: 604fe77b53d3514d5ad0f66764c7783850bb6e98
    hooks:
    -   id: shell-lint
+2 −1
Original line number Diff line number Diff line
recursive-include eb-prune *.py
exclude .pre-commit-config.yaml
include README.rst
include *.rst
include VERSION
include *.txt
+9 −0
Original line number Diff line number Diff line
@@ -3,6 +3,15 @@ Template

A CLI tool for generating files from Jinja2 templates and environment variables.

Example
-------

.. code:: shell

    $ export name='John'
    $ echo 'Hello {{ name if name is defined else 'world' }}. | template
    Hello John.


TODO
----
+1 −1
Original line number Diff line number Diff line
0.0.1
0.1.0
 No newline at end of file
+2 −2
Original line number Diff line number Diff line
@@ -4,8 +4,8 @@ from setuptools import setup, find_packages
setup(
    name='template',
    version=open('VERSION', 'r').read(),
    description='A CLI tool for generating files from Jinja2 templates and
    environment variables.',
    description='''A CLI tool for generating files from Jinja2 templates and
    environment variables.''',
    long_description=open('README.rst', 'r').read(),
    url='https://www.shore.co.il/git/template',
    author='Nimrod Adar',
Loading