This repository has been archived by the owner on Jan 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.cfg
120 lines (102 loc) · 3.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[metadata]
name = molecule-podman
url = https://github.com/ansible-community/molecule-podman
project_urls =
Bug Tracker = https://github.com/ansible-community/molecule-podman/issues
Release Management = https://github.com/ansible-community/molecule-podman/releases
CI = https://github.com/ansible-community/molecule-podman/actions
Code of Conduct = https://docs.ansible.com/ansible/latest/community/code_of_conduct.html
Documentation = https://molecule.readthedocs.io
Discussions = https://github.com/ansible-community/molecule/discussions
Source Code = https://github.com/ansible-community/molecule-podman
description = Molecule aids in the development and testing of Ansible roles
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Ansible by Red Hat
author_email = info@ansible.com
maintainer = Ansible by Red Hat
maintainer_email = info@ansible.com
license = MIT
license_files = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: System :: Systems Administration
Topic :: Utilities
Typing :: Typed
keywords =
ansible
podman
testing
molecule
[options]
use_scm_version = True
python_requires = >=3.9
package_dir =
= src
packages = find:
# Do not use include_package_data as we mention them explicitely.
# see https://setuptools.pypa.io/en/latest/userguide/datafiles.html
# include_package_data = True
zip_safe = False
# These are required in actual runtime:
install_requires =
ansible-compat >= 2.2.0
molecule >= 4.0.0
# selinux python module is needed as least by ansible-podman modules
# and allows us of isolated (default) virtualenvs. It does not avoid need
# to install the system selinux libraries but it will provide a clear
# message when user has to do that.
selinux; sys_platform=="linux2"
selinux; sys_platform=="linux"
[options.extras_require]
docs =
simplejson
Sphinx
sphinx_ansible_theme >= 0.2.2
[options.entry_points]
molecule.driver =
podman = molecule_podman.driver:Podman
[options.package_data]
* =
**/*.j2
**/*.json
**/*.yaml
**/*.yml
py.typed
[options.packages.find]
where = src
[tool:pytest]
addopts = --doctest-modules --durations 10 --color=yes
doctest_optionflags = ALLOW_UNICODE ELLIPSIS
norecursedirs = dist doc build .tox .eggs
filterwarnings =
# treat warnings as errors unless we add them below
error
# ignore::UserWarning
markers =
extensive: marks tests that we want to skip by default, as they are indirectly covered by other tests
[flake8]
# do not add excludes for files in repo
exclude = .venv/,.tox/,dist/,build/,.eggs/
format = pylint
# E203: https://github.com/python/black/issues/315
ignore = E741,W503,W504,H,E501,E203,D102
# TODO(ssbarnea): remove temporary skips one by one:
# [D102] Missing docstring in public method
# [D104] Missing docstring in public package
# 88 is official black default:
max-line-length = 88
per-file-ignores =
docs/conf.py: D
src/molecule/test/*: D100,D103,D104