forked from ansible/ansible-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
28 lines (25 loc) · 769 Bytes
/
setup.cfg
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
[metadata]
name = ansible-runner
author = Ansible, Inc.
author_email = [email protected]
summary = "Consistent Ansible Python API and CLI with container and process isolation runtime capabilities"
home_page = https://ansible-runner.readthedocs.io
project_urls =
Source = https://github.com/ansible/ansible-runner
description_file = README.md
description_content_type = text/markdown
license_file = LICENSE.md
[entry_points]
console_scripts =
ansible-runner = ansible_runner.__main__:main
[files]
packages =
ansible_runner
data-files =
share/ansible-runner/utils = utils/*
[flake8]
# W503 - Line break occurred before a binary operator
ignore=W503
max-line-length=160
per-file-ignores =
ansible_runner/display_callback/callback/awx_display.py:E402