-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
48 lines (42 loc) · 1.1 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "socketsecurity"
dynamic = ["version"]
requires-python = ">= 3.9"
dependencies = [
'requests',
'mdutils',
'prettytable',
'GitPython',
'packaging',
]
readme = "README.md"
description = "Socket Security CLI for CI/CD"
keywords = ["socketsecurity", "socket.dev", "sca", "oss", "security"]
authors = [
{name = "Douglas Coburn", email = "[email protected]"}
]
maintainers = [
{name = "Douglas Coburn", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.scripts]
socketcli = "socketsecurity.socketcli:cli"
[project.urls]
Homepage = "https://socket.dev"
[tool.setuptools.packages.find]
include = [
"socketsecurity",
"socketsecurity.core"
]
[tool.setuptools.dynamic]
version = {attr = "socketsecurity.__version__"}