-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (48 loc) · 1.1 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[project]
name = "pkiviewer"
version = "0.2.1"
description = "PKI file viewer"
authors = [{ name = "Simon Kennedy", email = "[email protected]" }]
dependencies = [
"cryptography>=42.0.5",
"rich>=13.7.1",
"click>=8.1.7",
"tomli>=2.0.1",
"asn1tools>=0.166.0",
]
requires-python = ">=3.11"
readme = "ReadMe.md"
license = { text = "Apache-2.0" }
[project.scripts]
pkiviewer = 'pkiviewer.__main__:run'
[project.urls]
Homepage = "https://github.com/sffjunkie/pkiviewer"
Issues = "https://github.com/sffjunkie/pkiviewer/issues"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"pytest>=8.1.1",
"tox>=4.14.1",
"scriv>=1.5.1",
"pytest-html>=4.1.1",
"pre-commit>=3.6.2",
"ruff>=0.3.2",
"mypy>=1.9.0",
]
[tool.pdm.scripts]
test = "pytest"
typecheck = "mypy ./src/pkiviewer/"
[[tool.mypy.overrides]]
module = [
'cryptography.*',
'asn1tools.*',
'pkiviewer.asn1.json_encoder',
'pkiviewer.model.csr',
]
ignore_errors = true
[tool.pytest.ini_options]
pythonpath = ["src"]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"