forked from microsoft/sarif-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (34 loc) · 862 Bytes
/
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
[tool.poetry]
name = "sarif-tools"
version = "1.0.0"
description = "SARIF tools"
authors = ["Microsoft"]
readme = "README.md"
homepage = "https://github.com/microsoft/sarif-tools"
packages = [
{ include = "sarif" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/microsoft/sarif-tools/issues"
[tool.poetry.dependencies]
jinja2 = "^3.1.2"
python = "^3.8"
python-docx = "^0.8.11"
matplotlib = "^3.5.1"
pyyaml = "^6.0.1"
jsonpath-ng = "^1.6.0"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
pylint = "^2.13.8"
pytest = "^7.2.0"
pytest-cov = "^4.1.0"
[tool.poetry.scripts]
sarif = "sarif.cmdline.main:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"