-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (52 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
65 lines (52 loc) · 1.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
[project]
name = "amd-node-scraper"
dynamic = ["version"]
description = "A framework for automated error detection and data collection"
authors = []
readme = "README.md"
requires-python = ">=3.9"
keywords = []
classifiers = ["Topic :: Software Development"]
dependencies = [
"pydantic>=2.8.2",
"paramiko>=3.2.0,<4.0.0",
"requests",
"pytz",
"urllib3>=1.26.15,<2.0.0"
]
[project.optional-dependencies]
dev = [
"build",
"black",
"pylint",
"coverage",
"twine",
"ruff",
"pre-commit",
"pytest",
"pytest-cov",
"mypy"
]
[project.urls]
homepage = "https://github.com/amd/node-scraper"
documentation = "https://github.com/amd/node-scraper"
repository = "https://github.com/amd/node-scraper"
[build-system]
requires = ["setuptools==70.3.0", "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"
[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"