-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (40 loc) · 960 Bytes
/
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
#:schema https://json.schemastore.org/pyproject.json
[project]
name = "ipmi-cert"
version = "1.0.1"
description = ""
authors = [{ name = "Kalle M. Aagaard", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.13"
license = "MIT"
license-files = ["LICENSE"]
dependencies = [
"python-dotenv>=0.21.0",
"typer>=0.15.1",
"httpx>=0.28.1",
"secretstr>=0.1.0",
"pydantic>=2.10.6",
]
[project.scripts]
ipmi-update-cert = 'ipmi_cert:cli.main'
[project.urls]
Repository = "https://github.com/KalleDK/py-ipmi-cert"
[tool.ruff]
line-length = 120
target-version = "py313"
[tool.pyright]
include = ["src", "tests"]
[tool.pytest.ini_options]
addopts = "-v --cov=ipmi_cert --cov-report=xml --cov-report=term"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
tools = [
"pyright>=1.1.392.post0",
"ruff>=0.9.3",
]
test = [
"pytest>=8.3.4",
"pytest-coverage>=0.0",
]