-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 839 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 839 Bytes
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
from setuptools import setup
setup(
name="r2magicstrings",
version="0.1.0",
description="IDAMagicStrings ported to radare2",
url="https://github.com/FernandoDoming/r2magicstrings",
author="Fernando Domínguez",
author_email="fernando.dom.del@gmail.com",
license="GNU GPL v3",
packages=[
"r2magicstrings",
],
install_requires=[
"ida2r2>=0.1.0",
],
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
],
entry_points = {
"console_scripts": ["r2magicstrings=r2magicstrings.r2_magic_strings:main"]
}
)