-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 1.13 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
41
42
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "python-binexport"
version = "0.4.2"
description = "Python wrapper to manipulate binexport files (protobuf)"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [{ name = "Quarkslab", email = "diffing@quarkslab.com" }]
license = {text = "AGPL-3.0"}
requires-python = ">=3.10"
dependencies = [
"python-magic; os_name!='nt'",
"python-magic-bin; os_name=='nt'",
"click",
"protobuf",
"networkx",
"enum_tools",
"idascript",
]
classifiers = [
'Topic :: Security',
'Environment :: Console',
'Operating System :: OS Independent',
]
[project.urls]
Homepage = "https://github.com/quarkslab/python-binexport"
Repository = "https://github.com/quarkslab/python-binexport"
Documentation = "https://quarkslab.github.io/diffing-portal/exporter/binexport.html#python-binexport"
"Bug Tracker" = "https://github.com/quarkslab/python-binexport/issues"
[project.scripts]
binexporter = 'binexport.__main__:main'
[project.optional-dependencies]
dev = ["tox"]
[tool.black]
line-length = 100
target-version = ['py310']