forked from ansible/ansible-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 750 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python
# Copyright (c) 2018 Red Hat, Inc.
# All Rights Reserved.
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name="ansible-runner",
version="1.4.6",
author='Red Hat Ansible',
url="https://github.com/ansible/ansible-runner",
license='Apache',
packages=find_packages(),
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'psutil',
'pexpect>=4.5',
'python-daemon',
'PyYAML',
'six',
],
zip_safe=False,
entry_points={
'console_scripts': [
'ansible-runner = ansible_runner.__main__:main'
]
}
)