-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 1.17 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "timeplus-ocsf-simulator"
version = "0.1.0"
description = "A generator for simulated OCSF (Open Cybersecurity Schema Framework) event streams"
readme = "README.md"
license = {text = "Apache-2.0"}
authors = [
{ name = "Gang Tao", email = "gang@timeplus.com" },
]
keywords = ["ocsf", "cybersecurity", "event-simulation", "streaming"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Security",
"Topic :: Software Development :: Testing",
]
requires-python = ">=3.9"
dependencies = [
"faker>=20.0.0",
]
[project.optional-dependencies]
ocsf = ["ocsf-lib>=0.10.3"]
kafka = ["kafka-python>=2.0.0"]
all = ["ocsf-lib>=0.10.3", "kafka-python>=2.0.0"]
[project.urls]
Homepage = "https://github.com/timeplus-io/OCSF-Simulator"
Repository = "https://github.com/timeplus-io/OCSF-Simulator"
Issues = "https://github.com/timeplus-io/OCSF-Simulator/issues"
[project.scripts]
ocsf-sim = "ocsf_simulator:main_cli"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
ocsf_simulator = ["data/*.csv"]