You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/setup.py

35 lines
788 B
Python

13 years ago
#!/usr/bin/env python
import glob
import os
import sys
sys.path.insert(0, os.path.abspath('lib'))
from ansible import __version__, __author__
13 years ago
from distutils.core import setup
setup(name='ansible',
version=__version__,
13 years ago
description='Minimal SSH command and control',
author=__author__,
13 years ago
author_email='michael.dehaan@gmail.com',
url='http://ansible.github.com/',
license='GPLv3',
13 years ago
package_dir = { 'ansible' : 'lib/ansible' },
packages=[
'ansible',
],
data_files=[
('/usr/share/ansible',
glob.glob('library/*')
),
('/usr/share/man/man1',
glob.glob('docs/man/man1/*.1')
),
13 years ago
],
scripts=[
'bin/ansible',
'bin/ansible-playbook'
13 years ago
]
)