-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
33 lines (30 loc) · 1006 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
31
32
33
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "idascript"
description = "IDA Pro wrapper to launch script on binaries"
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.2.2'
requires-python = ">=3.8"
dependencies = [
'python-magic; os_name!="nt"',
'python-magic-bin; os_name=="nt"',
'click',
'progressbar2',
'psutil'
]
classifiers = [
'Topic :: Security',
'Environment :: Console',
'Operating System :: OS Independent',
]
[project.urls]
Homepage = "https://github.com/quarkslab/idascript"
Repository = "https://github.com/quarkslab/idascript"
Documentation = "https://quarkslab.github.io/diffing-portal/idascript/README.html"
"Bug Tracker" = "https://github.com/quarkslab/idascript/issues"
[project.scripts]
idascripter = "idascript.__main__:main"