-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
43 lines (36 loc) · 1.2 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
[tool.poetry]
name = "libsast"
version = "3.1.6"
description = "A generic SAST library built on top of semgrep and regex"
keywords = ["libsast", "SAST", "Python SAST", "SAST API", "Regex SAST", "Pattern Matcher"]
authors = ["Ajin Abraham <[email protected]>"]
license = "LGPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/ajinabraham/libsast"
documentation = "https://github.com/ajinabraham/libsast/blob/master/README.md"
packages = [{ include = "libsast", format = ["sdist", "wheel"]}]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Security",
"Topic :: Software Development :: Quality Assurance",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/ajinabraham/libsast/issues"
[tool.poetry.scripts]
libsast = "libsast.__main__:main"
[tool.poetry.dependencies]
python = "^3.8"
requests = "*"
pyyaml = ">=6.0"
billiard = "^4.2.1"
[tool.poetry.group.semgrep]
optional = true
[tool.poetry.group.semgrep.dependencies]
semgrep = {version = "1.86.0", markers = "sys_platform != 'win32'"}
[tool.poetry.group.dev.dependencies]
bandit = "*"
pytest = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"