mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
281f96b8dd
and treeish saving everywhere. there are probably some quirks here we'll want to refine further later, for instance, we should be able to do nicer things with "can't contact host tracebacks".
39 lines
1,015 B
Python
39 lines
1,015 B
Python
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name='ansible',
|
|
version='1.0',
|
|
description='Minimal SSH command and control',
|
|
author='Michael DeHaan',
|
|
author_email='michael.dehaan@gmail.com',
|
|
url='http://github.com/mpdehaan/ansible/',
|
|
license='MIT',
|
|
package_dir = { 'ansible' : 'lib/ansible' },
|
|
packages=[
|
|
'ansible',
|
|
],
|
|
data_files=[
|
|
('/usr/share/ansible', [
|
|
'library/ping',
|
|
'library/command',
|
|
'library/facter',
|
|
'library/ohai',
|
|
'library/copy',
|
|
'library/setup',
|
|
'library/template',
|
|
'library/git',
|
|
]),
|
|
('man/man1', [
|
|
'docs/man/man1/ansible.1'
|
|
]),
|
|
('man/man5', [
|
|
'docs/man/man5/ansible-modules.5',
|
|
'docs/man/man5/ansible-playbook.5'
|
|
])
|
|
],
|
|
scripts=[
|
|
'bin/ansible',
|
|
'bin/ansible-playbook'
|
|
]
|
|
)
|