forked from ConsenSysDiligence/napalm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.01 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
[tool.poetry]
name = "napalm-toolbox"
version = "0.1.4"
description = "A tool to make working with security analysis tools a breeze"
authors = ["JoranHonig <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
include = ["templates/**/*"]
packages = [
{ include = "napalm" },
]
[tool.poetry.dependencies]
python = "^3.12"
loguru = "^0.7.0"
pydantic-sarif = "^0.1.0"
toolz = "^0.12.0"
click = "^8.1.6"
gitpython = "^3.1.32"
jinja2 = "^3.1.2"
pyyaml = "^6.0.1"
pickledb = "^0.9.2"
importlib-metadata = "^7.0.0"
rich = "^13.7.0"
langchain = "^0.0.352"
openai = "^1.6.1"
setuptools = "69.1.1"
semgrep = "1.63.0"
[tool.poetry.group.dev.dependencies]
black = "^23.11.0"
pre-commit = "^3.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
"napalm" = "napalm.cli.base.main:cli"
"napalm-dev" = "napalm.cli.dev.cli:cli"
[tool.poetry.dependencies.napalm_slither]
optional = true
version = "^0.1.0"
[tool.poetry.extras]
slither = ["napalm-slither"]