forked from ansible/ansible-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
49 lines (46 loc) · 1.63 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[metadata]
name = ansible-runner
author = Ansible, Inc.
author_email = [email protected]
description = "Consistent Ansible Python API and CLI with container and process isolation runtime capabilities"
url = https://ansible-runner.readthedocs.io
project_urls =
Source = https://github.com/ansible/ansible-runner
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache Software License, Version 2.0
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Natural Language :: English
Operating System :: POSIX
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3 :: Only
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Systems Administration
Topic :: Utilities
[options]
python_requires = >=3.9
install_requires =
pexpect>=4.5
packaging
python-daemon
pyyaml
# enable `groups` arg to entry_points missing in 3.9 stdlib importlib.metadata
importlib-metadata>= 4.6,< 6.3; python_version<'3.10'
[options.entry_points]
console_scripts =
ansible-runner = ansible_runner.__main__:main
[flake8]
# W503 - Line break occurred before a binary operator
ignore = W503
max-line-length = 160
per-file-ignores =
src/ansible_runner/display_callback/callback/awx_display.py:E402