-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
58 lines (52 loc) · 1.47 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
49
50
51
52
53
54
55
56
57
58
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.mypy]
allow_redefinition = true
files = ["./py_ocsf_models"]
strict = true
# https://peps.python.org/pep-0621/
[tool.poetry]
authors = ["Prowler Team <[email protected]>"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License"
]
description = "This is a Python implementation of the OCSF models. The models are used to represent the data of the OCSF Schema defined in https://schema.ocsf.io/."
license = "Apache-2.0"
maintainers = [
"Sergio Garcia <[email protected]>",
"Pepe Fagoaga <[email protected]>"
]
name = "py-ocsf-models"
packages = [
{include = "py_ocsf_models"}
]
readme = "README.md"
version = "0.2.0"
[tool.poetry.dependencies]
cryptography = "43.0.1"
email-validator = "2.2.0"
pydantic = "1.10.18"
python = ">=3.9,<3.13"
[tool.poetry.group.dev.dependencies]
bandit = "1.7.10"
black = "24.10.0"
flake8 = "7.1.1"
mypy = "1.11.2"
pylint = "3.3.1"
pytest = "8.3.3"
pytest-cov = "5.0.0"
pytest-env = "1.1.5"
pytest-randomly = "3.15.0"
pytest-xdist = "3.6.1"
ruff = "0.6.8"
safety = "3.2.8"
vulture = "2.12"
[tool.poetry.urls]
"Changelog" = "https://github.com/prowler-cloud/py-ocsf-models/releases"
"Documentation" = "https://docs.prowler.cloud"
"Homepage" = "https://github.com/prowler-cloud/py-ocsf-models"
"Issue tracker" = "https://github.com/prowler-cloud/py-ocsf-models/issues"
[tool.poetry-version-plugin]
source = "init"