Commit e7856d8a authored by nimrod's avatar nimrod
Browse files

- Convert to Python package.

parent 29a18b01
Loading
Loading
Loading
Loading
+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.

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'],
)