-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path.legacy_setup.py
41 lines (39 loc) · 1.2 KB
/
.legacy_setup.py
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
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name = 'k2l',
version = "2.1.1",
description = 'Static MachO/ObjC Reverse Engineering Toolkit',
long_description = long_description,
long_description_content_type = 'text/markdown',
python_requires = '>=3.6',
author = 'cynder',
license = 'MIT',
url = 'https://github.com/cxnder/ktool',
install_requires = [
'pyaes',
'kimg4',
'Pygments'
],
packages = ['ktool_macho', 'ktool', 'ktool_swift'],
package_dir = {
'ktool_macho': 'src/ktool_macho',
'lib0cyn': 'src/ktool_macho',
'ktool': 'src/ktool',
'ktool_swift': 'src/ktool_swift'
},
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
],
entry_points = {'console_scripts': [
'ktool=ktool.ktool_script:main'
]},
project_urls = {
'Documentation': 'https://ktool.cynder.me/en/latest/ktool.html',
'Issue Tracker': 'https://github.com/cxnder/ktool/issues'
}
)