forked from GrammaTech/pylint-sarif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 1.07 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
[tool.poetry]
name = "pylint-sarif-unofficial"
version = "0.2.1"
description = "Pylint output as SARIF"
authors = []
maintainers = ["Eliah Kagan <degeneracypressure@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/EliahKagan/pylint-sarif"
repository = "https://github.com/EliahKagan/pylint-sarif"
keywords = ["pylint", "sarif"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Software Development :: Quality Assurance",
]
packages = [
{ include = "pylint2cso.py", from = "src" },
{ include = "pylint2sarif.py", from = "src" },
]
include = ["sarif-schema.json"] # TODO: Do this better (maybe via data_files).
[tool.poetry.dependencies]
python = "^3.7"
python-jsonschema-objects = "^0.4.4"
[tool.poetry.group.dev.dependencies]
pylint = { version = "^2.17.5", python = ">=3.7.2,<4.0" }
[tool.poetry.scripts]
pylint2cso = "pylint2cso:main"
pylint2sarif = "pylint2sarif:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"