Skip to content

Commit

Permalink
Move to pyproject.toml and src dir structure. Add python-magic-bin de…
Browse files Browse the repository at this point in the history
…pendency for windows
  • Loading branch information
patacca committed Aug 30, 2023
1 parent 89165cc commit 212a6a2
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 36 deletions.
32 changes: 32 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[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.1.0'
requires-python = ">=3.8"
dependencies = [
'python-magic',
'python-magic-bin; os_name=="nt"',
'click',
'progressbar2',
]
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"

[tools.setuptools]
script-files = ["bins/idascripter"]
36 changes: 0 additions & 36 deletions setup.py

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 212a6a2

Please sign in to comment.