Loading .pre-commit-config.yaml 0 → 100644 +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 MANIFEST.in +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 README.rst +9 −0 Original line number Diff line number Diff line Loading @@ -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 ---- Loading VERSION +1 −1 Original line number Diff line number Diff line 0.0.1 0.1.0 No newline at end of file setup.py +2 −2 Original line number Diff line number Diff line Loading @@ -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 Loading
.pre-commit-config.yaml 0 → 100644 +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
MANIFEST.in +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
README.rst +9 −0 Original line number Diff line number Diff line Loading @@ -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 ---- Loading
setup.py +2 −2 Original line number Diff line number Diff line Loading @@ -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