-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (38 loc) · 1.14 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "sectool"
version = "1.0.0"
description = "Cybersecurity multi-tool CLI: code, SSL/TLS, dependency, packet, password and crypto auditing"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "sectool contributors" }]
keywords = ["security", "cli", "sast", "ssl", "tls", "cve", "osv", "passwords", "crypto"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Security",
]
dependencies = [
"requests>=2.31,<3",
"colorama>=0.4.6,<0.5",
"cryptography>=42",
]
[project.optional-dependencies]
packets = ["scapy>=2.5,<3"]
dev = ["pytest>=8"]
[project.urls]
Homepage = "https://example.com/sectool"
Source = "https://example.com/sectool"
[project.scripts]
sectool = "sectool.cli:main"
[tool.setuptools.packages.find]
include = ["sectool*"]
[tool.pytest.ini_options]
testpaths = ["tests"]