-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
36 lines (32 loc) · 1.05 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "python-bindiff"
description = "Python wrapper to manipulate bindiff files"
authors = [{ name = "Robin David", email = "[email protected]" }]
license = { text = "Apache Software License (Apache License, Version 2)" }
readme = { file = "README.md", content-type = "text/markdown" }
version = '0.3.0'
requires-python = ">=3.9"
dependencies = [
"python-magic; os_name!='nt'",
"python-magic-bin; os_name=='nt'",
'click',
'python-binexport>=0.3.3',
]
classifiers = [
'Topic :: Security',
'Environment :: Console',
'Operating System :: OS Independent',
]
[project.scripts]
bindiffer = 'bindiff.__main__:main'
[project.urls]
Homepage = "https://github.com/quarkslab/python-bindiff"
Repository = "https://github.com/quarkslab/python-bindiff"
Documentation = "https://diffing.quarkslab.com/differs/bindiff.html#python-bindiff"
"Bug Tracker" = "https://github.com/quarkslab/python-bindiff/issues"
[tool.black]
line-length = 100
target-version = ['py310']