-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (68 loc) · 2.02 KB
/
pyproject.toml
File metadata and controls
77 lines (68 loc) · 2.02 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
68
69
70
71
72
73
74
75
76
77
[project]
name = "socket_basics"
version = "1.1.3"
description = "Socket Basics with integrated SAST, secret scanning, and container analysis"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Socket.dev", email = "support@socket.dev"},
]
keywords = ["security", "sast", "secrets", "container", "scanning", "opengrep", "trivy", "trufflehog"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Security",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
# Keep runtime deps minimal and explicit. Remove unused packages (mdutils, PyGithub)
"requests>=2.31.0",
"tabulate~=0.9.0",
"light-s3-client~=0.0.30",
"PyYAML>=6.0.0",
"tomli; python_version < '3.11'",
"socketdev>=3.0.29",
"jsonschema>=4.25.1"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=22.0.0",
"flake8>=5.0.0",
]
[project.urls]
Homepage = "https://socket.dev"
Repository = "https://github.com/SocketDev/socket-basics"
Documentation = "https://github.com/SocketDev/socket-basics/blob/main/README.md"
"Bug Tracker" = "https://github.com/SocketDev/socket-basics/issues"
[project.scripts]
socket-basics = "socket_basics:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src", "socket_basics"]
[tool.hatch.build]
include = [
"socket_basics/*.py",
"socket_basics/rules/*.yml",
"src/**/*.py",
]
[dependency-groups]
dev = []
[tool.black]
line-length = 100
target-version = ["py39"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]