Commit 33de642c authored by nimrod's avatar nimrod
Browse files

Merge branch 'feature/python_package'

parents 5c013993 848955e7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
0.4.0
 No newline at end of file
0.5.0
+3 −2
Original line number Diff line number Diff line
@@ -2,9 +2,10 @@
- id: ansible-syntax-check
  name: Syntax check Ansible playbooks
  description: Check Ansible playbooks for syntax errors.
  language: script
  entry: ansible-syntax-check
  language: python
  entry: ansible-playbook
  files: playbook.yml
  args: ['--inventory=localhost,', '--syntax-check']
- id: ansible-vault-check
  name: Verify vaulted files
  description: Verify that Ansible Vault files are vaulted.
+2 −2
Original line number Diff line number Diff line
ansible==2.2.0.0
pre-commit==0.9.3
ansible==2.2.1.0
pre-commit==0.11.0
piprot==0.9.7

setup.py

0 → 100644
+8 −0
Original line number Diff line number Diff line
from setuptools import setup


setup(
        name='pre_commit_ansible_dummy_package',
        version='0.1.0',
        install_requires=['ansible==2.2.1.0'],
)