-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (70 loc) · 1.75 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (70 loc) · 1.75 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
[project]
name = "amd-node-scraper"
dynamic = ["version"]
description = "Automated data collection and analysis for system debug."
authors = [{ name = "AMD" }]
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
keywords = [
"amd",
"debug",
"diagnostics",
"dmesg",
"redfish",
"scraping",
"systems",
"oob",
"in-band",
]
classifiers = ["Topic :: Software Development"]
dependencies = [
"pydantic>=2.8.2",
"paramiko>=3.2.0,<4.0.0",
"requests",
"pytz",
"urllib3>=2.6.0"
]
[project.optional-dependencies]
dev = [
"build",
"black",
"pylint",
"coverage",
"twine",
"ruff",
"pre-commit",
"pytest",
"pytest-cov",
"mypy",
"types-paramiko",
"types-setuptools",
]
[project.urls]
homepage = "https://github.com/amd/node-scraper"
documentation = "https://github.com/amd/node-scraper/blob/main/docs/PLUGIN_DOC.md"
repository = "https://github.com/amd/node-scraper"
changelog = "https://github.com/amd/node-scraper/releases"
issues = "https://github.com/amd/node-scraper/issues"
[build-system]
requires = ["setuptools==78.1.1", "setuptools-scm==8.1.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ['nodescraper']
[tool.setuptools]
include-package-data = true
[project.scripts]
node-scraper = "nodescraper.cli:cli_entry"
[project.entry-points."nodescraper.plugin_configs"]
NodeStatus = "nodescraper.pluginrecipe.node_status:NodeStatus"
AllPlugins = "nodescraper.pluginrecipe.all_plugins:AllPlugins"
[tool.black]
line-length = 100
target_version = ['py39']
[tool.isort]
profile = "black"
[tool.ruff.lint]
select = ["F", "B", "T20", "N", "W", "I", "E"]
ignore = ["E501", "N806"]
[tool.setuptools_scm]
version_scheme = "post-release"