-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 1.07 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
[project]
name = "smime-email"
version = "1.0.4"
description = "A Python library to generate a signed email"
authors = [{ name = "Siemens" }]
requires-python = ">=3.10, <4"
readme = "README.md"
license = "MIT"
dependencies = ["cryptography>=46.0.3,<46.1.0"]
[dependency-groups]
dev = [
"poethepoet>=0.42,<0.43",
"pytest>=9.0.2,<10",
"mypy>=1.11.2,<2",
"pytest-deadfixtures>=3,<4",
"coverage>=7.6.1,<8",
"pytest-cov>=5.0.0",
"ruff>=0.6.9",
]
[tool.hatch.build.targets.sdist]
include = ["smime_email"]
[tool.hatch.build.targets.wheel]
include = ["smime_email"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
addopts = "--cov smime_email --cov-report term --cov-report html --cov-report xml --junitxml junit.xml"
filterwarnings = "ignore"
junit_family = "xunit2"
[tool.poe.tasks]
format = {shell = "ruff format && ruff check --fix"}
lint = {shell = "ruff check && pytest --dead-fixtures"}
types = { cmd = "mypy ." }
test = { cmd = "pytest" }
all = { shell = "poe format && poe lint && poe types && poe test" }