-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (41 loc) · 1.23 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
[tool.poetry]
name = "appsec-discovery"
version = "0.6.7"
license = "MIT"
description = "Discover sensitive objects in project code"
authors = ["Dmitrii Mariushkin <[email protected]>"]
readme = "README.md"
keywords = ["security", "assets", "discovery", "scanning", "appsec"]
packages = [{include = "appsec_discovery"}]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Topic :: Security"
]
[tool.poetry.urls]
"Homepage" = "https://github.com/dmarushkin/appsec-discovery"
"Bug Tracker" = "https://github.com/dmarushkin/appsec-discovery/issues"
[tool.poetry.scripts]
appsec-discovery = "appsec_discovery.cli:main"
[tool.poetry.dependencies]
python = "^3.12"
click = "^8.1.7"
semgrep = "^1.58.0"
pydantic = "1.9.0"
pyyaml = "^6.0.2"
sarif-om = "^1.0.4"
jschema-to-python = "^1.2.3"
huggingface-hub = "^0.26.2"
llama-cpp-python = "^0.3.1"
mkdocs-material = "^9.5.44"
graphql-core = "^3.2.5"
proto-schema-parser = "^1.4.2"
openapi3-parser = "^1.1.19"
click-loglevel = "^0.5.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"