-
Notifications
You must be signed in to change notification settings - Fork 97
/
setup.cfg
52 lines (47 loc) · 1.42 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
50
51
52
[metadata]
name = ansible-builder
author = Ansible, Inc.
author_email = [email protected]
description = "A tool for building Ansible Execution Environments"
url = https://ansible-builder.readthedocs.io
long_description = file: README.md
long_description_content_type = text/markdown
license_files =
LICENSE.md
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.13
Programming Language :: Python :: 3 :: Only
Topic :: Software Development :: Build Tools
Topic :: System :: Systems Administration
Topic :: Utilities
[flake8]
# W503 - Line break occurred before a binary operator
ignore=W503
max-line-length=160
[options]
include_package_data = true
install_requires =
PyYAML
bindep
jsonschema
packaging
python_requires = >=3.9
[options.package_data]
ansible_builder._target_scripts =
*
[options.entry_points]
console_scripts =
ansible-builder = ansible_builder.cli:run