-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 1.11 KB
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
[build-system]
requires = ["meson-python>=0.7.0", "meson>=1.1.0"]
build-backend = "mesonpy"
[project]
name = "qbinary"
description = "QBinary is a framework meant to offer a stable universal API over binaries"
authors = [{ name = "Quarkslab", email = "diffing@quarkslab.com" }]
license = { text = "Apache Software License (Apache License, Version 2)" }
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.11"
dependencies = [
"multimethod",
"enum_tools",
"python-binexport>=0.4.0",
"capstone>=5.0.1",
"quokka-project[pypcode]>=0.6.1",
"networkx"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/quarkslab/qbinary"
Repository = "https://github.com/quarkslab/qbinary"
Documentation = "https://github.com/quarkslab/qbinary"
[project.optional-dependencies]
dev = ["tox"]
[tool.black]
line-length = 100
target-version = ['py313']
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow",
"binexport: marks tests that involve binexport",
"quokka: marks tests that involve quokka",
"capstone: marks tests that involve capstone",
]