mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
3567237dbc
remove data_files section from setup.py for some reason or another
26 lines
594 B
Python
26 lines
594 B
Python
#!/usr/bin/env python
|
|
|
|
import glob
|
|
import os
|
|
import sys
|
|
|
|
sys.path.insert(0, os.path.abspath('lib'))
|
|
from ansible import __version__, __author__
|
|
from distutils.core import setup
|
|
|
|
setup(name='ansible',
|
|
version=__version__,
|
|
description='Minimal SSH command and control',
|
|
author=__author__,
|
|
author_email='michael.dehaan@gmail.com',
|
|
url='http://ansible.github.com/',
|
|
license='GPLv3',
|
|
package_dir = { 'ansible' : 'lib/ansible' },
|
|
packages=[
|
|
'ansible',
|
|
],
|
|
scripts=[
|
|
'bin/ansible',
|
|
'bin/ansible-playbook'
|
|
]
|
|
)
|