-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
50 lines (41 loc) · 1.34 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
[build-system]
# requires = ["setuptools >= 40.6.0", "wheel"]
requires = ["hatchling>=1.26.3","setuptools >= 40.6.0", "wheel"]
# build-backend = "setuptools.build_meta"
build-backend = "hatchling.build"
[project]
name="showcert"
license = "MIT"
# license = { file = "LICENSE" }
dynamic = [ "version" ]
keywords = [ "SSL", "TLS", "certificate", "verify", "remote", "local", "X.509", "X509", "simple",
"openssl", "alternative", "CA", "generate", "showcert", "gencert" ]
dependencies = [
'cryptography >= 41.0.0',
'pyopenssl >= 21.0.0',
'pem >= 23.1.0',
'certifi >= 2018.10.15'
]
authors = [
{ name="Yaroslav Polyakov", email="[email protected]" },
]
description = "Simple OpenSSL for humans: all you need for X.509 TLS certificates (and nothing more)"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Security :: Cryptography"
]
[project.urls]
Homepage = "https://github.com/yaroslaff/showcert"
Issues = "https://github.com/yaroslaff/showcert/issues"
[project.scripts]
showcert = "showcert.showcert:main"
gencert = "showcert.gencert:main"
[tool.hatch.version]
# path = 'showcert:showcert/__main__.py'
path = 'showcert/__init__.py'
[tool.hatch.metadata]
# license-files = ["LICENSE"]