-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (37 loc) · 853 Bytes
/
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "nssdb"
dynamic = ["version"]
dependencies = [
"cryptography",
]
requires-python = ">=3.8"
authors = [
{name = "Milan Hauth", email = "milahu@gmail.com"},
]
maintainers = [
]
description = "add a ca.crt certificate to $HOME/.pki/nssdb/cert9.db and $HOME/.pki/nssdb/key4.db in python"
readme = "readme.md"
license = {file = "license.txt"}
keywords = [
"nss",
"nssdb",
"certutil",
"certificate",
"certificates",
"ssl",
"tls",
"https",
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
]
[tool.setuptools.dynamic]
version = {attr = "nssdb.__version__"}
[project.urls]
Homepage = "https://github.com/milahu/nssdb-py"