-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.48 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
54
55
[project]
name = "blint-db"
version = "1.0.0"
description = "Symbols database for OWASP blint"
authors = [
]
dependencies = [
"blint",
"huggingface-hub>=0.29.3",
"meson>=1.7.0",
"ninja>=1.11.1.3",
"oras>=0.2.25",
]
requires-python = ">=3.10"
readme = "README.md"
keywords = ["linter", "binary", "security", "sast"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Utilities",
"Topic :: Security",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/AppThreat/blint-db"
Bug-Tracker = "https://github.com/AppThreat/blint-db/issues"
[project.scripts]
blint-db = 'blint_db.cli:main'
[project.optional-dependencies]
dev = [
"isort>=6.0.0",
"black>=25.1.0",
"flake8>=7.1.2",
]
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = false
packages = ["blint_db", "blint_db.projects_compiler", "blint_db.utils", "blint_db.handlers", "blint_db.handlers.language_handlers"]
[tool.uv.sources]
blint = { git = "https://github.com/owasp-dep-scan/blint", rev = "f575550fa13c6ca718ee2416e4d85e061161d095" }