-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 1 KB
/
pyproject.toml
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
[build-system]
requires = [
"setuptools",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "ansible-playbill"
license = {"text" = "Apache License 2.0"}
authors = [
{name = "Diego Fernando Carrión", email = "[email protected]"},
]
maintainers = [
{name = "Comet Deployment Team", email = "[email protected]"},
]
description = "A library for invoking ansible playbook runs from withing python programs."
requires-python = ">=3.8.1,<4.0"
keywords = ["ansible", "playbook", "automation"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
]
dynamic = ["version", "readme"]
dependencies = [
"ansible_runner==2.3.3",
"ansible>=6.7",
"PyYAML>=6.0",
]
[tool.setuptools.package-data]
"*" = ["**/py.typed"]
[tool.mypy]
enable_incomplete_feature = "NewGenericSyntax"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
pythonpath = "."