-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpyproject.toml
73 lines (65 loc) · 1.81 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
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
[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.6"
authors = [
{ name = "Brandon Squizzato", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
]
dependencies = [
"app-common-python>=0.1.6",
"cached_property",
"chardet<5.3,>=5.2",
"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.3.0",
"python-dotenv",
"PyYAML",
"requests",
"sh",
"tabulate",
"wait-for",
"packaging",
]
[project.scripts]
bonfire = "bonfire.bonfire:main_with_handler"
[tool.setuptools_scm]
[tool.setuptools.packages.find]
# package names should match these glob patterns (["*"] by default)
include = ["bonfire*"]
# 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]
test = [
"mock",
"pytest",
"pytest-mock",
"requests-mock"
]
[project.urls]
Homepage = "https://www.github.com/RedHatInsights/bonfire"
[tool.ruff]
line-length = 100
indent-width = 4