-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (64 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
70 lines (64 loc) · 1.63 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
[tool.poetry]
name = "minisignxml"
version = "26.1"
description = "Minimal XML signature and verification, intended for use with SAML2"
authors = ["Jonas Obrist <jonas.obrist@hennge.com>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/HENNGE/minisignxml"
repository = "https://github.com/HENNGE/minisignxml"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Security :: Cryptography",
"Topic :: Text Processing :: Markup :: XML",
"Typing :: Typed"
]
[tool.poetry.dependencies]
python = "^3.10"
cryptography = ">=46.0"
lxml = "^6.0"
defusedxml = ">=0.7.1"
[tool.poetry.group.dev.dependencies]
pytest = ">=5.2"
pytest-cov = ">=2.8.1"
mypy = "^1"
lxml-stubs = "^0.4.0"
ruff = "^0.14.13"
[tool.ruff]
line-length = 88
exclude = [
"examples/",
]
[tool.ruff.lint]
ignore = [
"E722", # Do not use bare `except`
"E501", # Line too long (104 > 88 characters)
"E731", # Do not assign a `lambda` expression, use a `def`
"UP046",
"UP047",
]
select = [
"DTZ",
"E",
"F",
"I",
"T201", # Don't commit print statements
"UP",
]
[tool.mypy]
strict = true
files = [
"src/",
]
mypy_path = "stubs/"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"