-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (60 loc) · 1.71 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (60 loc) · 1.71 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "keyprotect"
version = "3.0.1"
description = "A Pythonic client for IBM Key Protect"
readme = "README.md"
license = "Apache-2.0"
authors = [
{ name = "Michael Darmawan", email = "Michael.Darmawan@ibm.com" },
{ name = "Prasidda Gautam", email = "p.g@ibm.com" },
{ name = "IBM Key Protect", email = "ibmkp@us.ibm.com" }
]
requires-python = ">=3.9"
dependencies = [
"ibm-cloud-sdk-core>=3.24.0,<4.0.0",
"python-dateutil>=2.5.3,<3.0.0",
"requests>=2.26.0,<3.0.0",
"urllib3>=2.0.0,<3.0.0",
]
classifiers = [
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.urls]
Homepage = "https://github.com/IBM/keyprotect-python-client"
[tool.setuptools.packages.find]
where = ["."]
[project.optional-dependencies]
dev = [
"coverage>=7.9.0,<8.0.0",
"pylint>=3.3.7,<4.0.0",
"cryptography>=3.4.0",
"pytest>=7.4.4,<8.0.0",
"pytest-cov>=4.1.0,<5.0.0",
"responses>=0.25.7,<1.0.0",
"black>=25.0.0,<26.0.0",
"pytest-rerunfailures>=3.1",
]
publish = [
"build",
"twine"
]
[tool.black]
line-length = 120
skip-string-normalization = true
[tool.pip.install]
uploaded-prior-to = "P3D"
[tool.uv]
exclude-newer = "3 days"