-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (83 loc) · 2.24 KB
/
pyproject.toml
File metadata and controls
92 lines (83 loc) · 2.24 KB
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
[build-system]
requires = ["setuptools >= 61.0", "setuptools_scm >= 8"]
build-backend = "setuptools.build_meta"
[project]
name = "crc-bonfire"
dynamic = ["version"]
description = "A CLI tool used to deploy ephemeral environments for testing cloud.redhat.com applications"
readme = "README.md"
license = { text= "MIT License" }
requires-python = ">=3.10"
authors = [
{ name = "Brandon Squizzato", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Utilities",
]
dependencies = [
"PyYAML",
"kubernetes>=29.0.0",
"jinja2>=3.1.0",
]
[project.scripts]
bonfire = "bonfire.bonfire:main_with_handler"
bonfire-mcp = "bonfire_mcp.server:main"
[tool.setuptools_scm]
[tool.setuptools.packages.find]
# package names should match these glob patterns (["*"] by default)
include = ["bonfire*", "bonfire_lib*", "bonfire_mcp*"]
# exclude packages matching these glob patterns (empty by default)
exclude = ["tests*"]
# to disable scanning PEP 420 namespaces (true by default)
namespaces = false
[project.optional-dependencies]
cli = [
"app-common-python>=0.1.6",
"cached_property",
"chardet<7.5,>=7.4",
"click>=7.1.2",
"gql[requests]>=3.5.0",
"importlib-metadata; python_version<'3.8'",
"importlib-resources; python_version<'3.9'",
"junitparser",
"multidict",
"ocviapy>=1.7.0",
"python-dotenv",
"requests>=2.33.0",
"sh",
"tabulate",
"wait-for",
"packaging",
"truststore",
]
mcp = [
"mcp>=1.0.0",
]
test = [
"mock",
"pytest",
"pytest-asyncio",
"pytest-mock",
"requests-mock",
]
[project.urls]
Homepage = "https://www.github.com/RedHatInsights/bonfire"
[tool.ruff]
line-length = 100
indent-width = 4
[tool.pytest.ini_options]
log_cli = true
log_level = "DEBUG"
asyncio_mode = "strict"
markers = [
"integration: integration tests requiring a live K8s cluster (deselected by default)",
]
addopts = "-m 'not integration'"