-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
31 lines (24 loc) · 973 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
[build-system]
requires = ["setuptools >= 61.0", "matplotlib"]
build-backend = "setuptools.build_meta"
[project]
name = "codescanner_analysis"
description = "Analysis module to classify regions of arbitrary binaries"
authors = [
{name = "Fraunhofer FKIE CA&D"},
{name = "Viviane Zwanger", email = "[email protected]"},
{name = "Henning Braun", email = "[email protected]"},
]
dynamic = ["version"]
keywords = ["codescanner", "code regions"]
license = {text = "Fraunhofer non-commercial License 'Codescanner'"}
dependencies = ["matplotlib", "numpy"]
requires-python = ">=3.8"
[project.urls]
repository = "https://github.com/fkie-cad/Codescanner"
[tool.setuptools]
packages = ["codescanner_analysis", "codescanner_analysis.utils"]
[tool.setuptools.dynamic]
version = {attr = "codescanner_analysis.__VERSION__"}
[tool.setuptools.package-data]
codescanner_analysis = ["res/lib/codescan", "res/lib/*.so", "res/lib/languages/*.lang"]