-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.19 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
[project]
name = "smallstep-py"
version = "0.1.1"
description = "Python library to interact with smallstep private ca"
authors = [
{name = "Clayton Rosenthal", email = "[email protected]"},
]
dependencies = [
"cryptography>=41.0.3",
"requests>=2.31.0",
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "GPLv3+"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Security",
"Topic :: Internet :: WWW/HTTP",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.dev-dependencies]
dev = [
"black>=23.3.0",
"bandit>=1.7.5",
"autoflake>=2.2.0",
"isort>=5.12.0",
"flake8>=6.0.0",
"pylint>=2.17.4",
"pyupgrade>=3.8.0",
"pydocstringformatter>=0.7.3",
"pre-commit-hooks>=4.4.0",
"pytest>=7.4.0",
"cryptography>=41.0.1",
]
[tool.pytest]
testpaths = ["step/tests"]
[tool.pdm.scripts]
pre_publish = { cmd = "pytest step/" }
[tool.bandit]
exclude = ["debug_step_cli.spec"]