-
Notifications
You must be signed in to change notification settings - Fork 199
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (83 loc) · 2.35 KB
/
pyproject.toml
File metadata and controls
88 lines (83 loc) · 2.35 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
[project]
name = "insights-core"
description = "Insights Core is a data collection and analysis framework"
authors = [
{name = "Red Hat, Inc.", email = "insights@redhat.com"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
license = {file = "LICENSE"}
dynamic = ["version", "readme"]
requires-python = ">=2.7"
dependencies = [
"cachecontrol",
"cachecontrol[filecache]",
"cachecontrol[redis]",
"defusedxml",
"jinja2; python_version <= '3.6'",
"jinja2>=3.1.6; python_version > '3.6'",
"lockfile",
"pyyaml",
"redis",
"requests",
"rpm",
"setuptools; python_version < '3.10'", # for pkg_resources
]
[project.urls]
repository = "https://github.com/RedHatInsights/insights-core"
documentation = "https://insights-core.readthedocs.io/en/latest/intro.html"
[project.optional-dependencies]
client = ["oyaml", "python-gnupg==0.4.6"]
client-develop = ["pre-commit", "wheel", "oyaml", "python-gnupg==0.4.6"]
cluster = ["ansible", "pandas"]
develop = ["pre-commit", "wheel"]
docs = [
"MarkupSafe",
"Pygments",
"Sphinx<=8.2.3",
"colorama",
"docutils",
"ipython<8.7.0; python_version <= '3.6'",
"ipython; python_version > '3.6'",
"jedi",
"nbsphinx",
"sphinx_rtd_theme",
]
linting = ["flake8"]
openshift = ["openshift"]
optional = [
"colorama",
"python-cjson",
"python-logstash",
"python-statsd",
"watchdog",
]
testing = [
"coverage",
"pytest-cov",
"pytest",
]
[project.scripts]
insights = "insights.command_parser:main"
insights-cat = "insights.tools.cat:main"
insights-collect = "insights.collect:main"
insights-dupkeycheck = "insights.tools.dupkeycheck:main"
insights-info = "insights.tools.query:main"
insights-inspect = "insights.tools.insights_inspect:main"
insights-run = "insights:main"
mangle = "insights.util.mangle:main"
[tool.setuptools.dynamic]
version = {attr = "insights.version._VERSION_"}
readme = {file = ["README.rst"]}
[tool.pytest.ini_options]
addopts = "-rsxXfE --ignore=./build/"
testpaths = ["insights"]