-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (35 loc) · 1.17 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
# Copyright 2024 HP Development Company, L.P.
# SPDX-License-Identifier: MIT
[tool.poetry]
name = "rscbulkenrollment"
version = "1.0.0"
description = "HP Remote System Controller Bulk Enrollment Tool"
authors = ["Diego Medaglia <diego.medaglia@hp.com>"]
readme = "README.md"
license = "MIT"
keywords = [ "HP", "HP Remote System Controller", "Redfish", "HP Remote System Management", "RSC", "RSM", "Enrollment" ]
classifiers = [
"Intended Audience :: Information Technology",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: System :: Systems Administration",
"Topic :: System :: Networking",
"Intended Audience :: Information Technology",
]
[tool.poetry.dependencies]
python = "^3.8"
requests = ">=2.32.0"
urllib3 = ">=1.25.8"
zeroconf = ">=0.56.0"
idna = ">=3.7"
[tool.poetry.scripts]
rsc_bulk_enrollment = "rscbulkenrollment.rsc_bulk_enroll:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.2"
pylint = "^3.1.0"
[tool.pylint]
init-hook='import site; sys.path += site.getsitepackages()'