-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (40 loc) · 1.16 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "socketsync"
dynamic = ["version"]
requires-python = ">= 3.9"
dependencies = [
'requests',
"socket-sdk-python >= 1.0.14"
]
readme = "README.md"
license = {file = "LICENSE"}
description = "Socket Security Sync Tool"
keywords = ["socketsecurity", "socket.dev", "sca", "oss", "security", "sdk"]
authors = [
{name = "Douglas Coburn", email = "[email protected]"}
]
maintainers = [
{name = "Douglas Coburn", email = "[email protected]"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14"
]
[project.urls]
Homepage = "https://github.com/SocketDev/socket-siem-connector"
[tool.setuptools.packages.find]
include = [
"socketsync",
"socketsync.connectors"
]
[tool.setuptools.dynamic]
version = {attr = "socketsync.__version__"}