-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (46 loc) · 1.28 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
49
50
51
52
53
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ludvig"
version = "0.8.4"
authors = [{ name = "Frode Hus", email = "[email protected]" }]
description = "A simple vulnerability scanner"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'cyclonedx-python-lib >= 5.1.1',
'packageurl-python>=0.11.1',
'requests>=2.31.0',
'yara-python==4.3.1',
'knack>=0.11.0',
'jschema_to_python>=1.2.3',
'sarif_om>=1.0.4',
'urllib3>=2.1.0',
'python-dateutil>=2.8.2',
'defusedxml>=0.7.1',
]
[project.scripts]
ludvig = "ludvig.__main__:main"
[project.urls]
"Homepage" = "https://github.com/frodehus/ludvig"
"Bug Tracker" = "https://github.com/frodehus/ludvig/issues"
[tool.black]
line-length = 88
target-version = ['py39']
include = '\.pyi?$'
[tool.bumpver]
current_version = "0.8.4"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"ludvig/__init__.py" = ["{version}"]