forked from RedHatQE/openshift-python-utilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (57 loc) · 1.46 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
[tool.black]
line-length = 88
target_version = ['py38', 'py39', 'py310', "py311"]
exclude = '''
(
/(
| \.git
| \.venv
| \.mypy_cache
| \.tox
)/
)
'''
[tool.isort]
line_length = 88
profile = "black"
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "openshift-python-utilities"
authors = [
{name = "Meni Yakove", email = "[email protected]"},
{name = "Ruth Netser", email = "[email protected]"}
]
description = "A utilities repository for https://github.com/RedHatQE/openshift-python-wrapper"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
keywords = ["Openshift"]
dependencies = [
"openshift",
"colorlog",
"pytest",
"pytest-testconfig",
"PyYAML",
"openshift-python-wrapper-data-collector",
"python-simple-logger",
]
dynamic = ["version"]
# ...
[tool.setuptools.dynamic]
version = {file = "VERSION"}
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/RedHatQE/openshift-python-utilities"
Download = "https://pypi.org/project/openshift-python-utilities/"
"Bug Tracker" = "https://github.com/RedHatQE/openshift-python-utilities/issues"
Documentation = "https://github.com/RedHatQE/openshift-python-utilities/blob/main/README.md"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["ocp_utilities"]