23 lines
495 B
TOML
23 lines
495 B
TOML
|
[tool.poetry]
|
||
|
name = "certificate_analysis"
|
||
|
version = "0.1.0"
|
||
|
description = "CA certificate analysis tool"
|
||
|
authors = ["Jan Dittberner <jandd@cacert.org>"]
|
||
|
|
||
|
[tool.poetry.dependencies]
|
||
|
python = "^3.9"
|
||
|
cryptography = "^37.0.3"
|
||
|
pyasn1-modules = "^0.2.8"
|
||
|
pyasn1 = "^0.4.8"
|
||
|
anytree = "^2.8.0"
|
||
|
beautifulsoup4 = "^4.11.1"
|
||
|
requests = "^2.28.1"
|
||
|
|
||
|
[tool.poetry.dev-dependencies]
|
||
|
black = "^22.6.0"
|
||
|
isort = "^5.10.1"
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core>=1.0.0"]
|
||
|
build-backend = "poetry.core.masonry.api"
|