-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (48 loc) · 1.81 KB
/
setup.py
File metadata and controls
53 lines (48 loc) · 1.81 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
# python setup.py bdist_wheel
# python -m twine upload dist/*
import sys
packagesDirs = {}
packagesDirs['NativDebugging'] = 'src'
packagesDirs['NativDebugging/Win32'] ='src/Win32'
packagesDirs['NativDebugging/Linux'] = 'src/Linux'
packagesDirs['NativDebugging/Unix'] = 'src/Unix'
packagesDirs['NativDebugging/File'] = 'src/File'
packagesDirs['NativDebugging/MemoryDump'] = 'src/MemoryDump'
packagesDirs['NativDebugging/Patterns'] = 'src/Patterns'
packagesNames = ['NativDebugging']
packagesNames.append('NativDebugging/Win32')
packagesNames.append('NativDebugging/Linux')
packagesNames.append('NativDebugging/Unix')
packagesNames.append('NativDebugging/File')
packagesNames.append('NativDebugging/MemoryDump')
packagesNames.append('NativDebugging/Patterns')
dataFiles = [('', ('NativDebugging.pth',))]
dataFiles.append(('NativDebugging\\Win32', (
'src/Win32/memReaderAMD64.exe',
'src/Win32/memReaderIa64.exe',
'src/Win32/memReaderx86.exe',
'src/Win32/pythonGateAMD64.dll',
'src/Win32/pythonGatex86.dll',
'src/Win32/Detoursx86.dll',
'src/Win32/DetoursAMD64.dll')))
requires = [
'future',
'rpyc',
'distorm3',
"pywin32;platform_system=='Windows'",
"pyelftools",
'QtWidgets']
from setuptools import setup
setup(
name = 'NativDebugging',
version = '39',
description = 'Debugging tools for many platforms',
author = 'Assaf Nativ',
author_email = 'Nativ.Assaf@gmail.com',
packages = packagesNames,
package_dir = packagesDirs,
install_requires = requires,
url = 'https://github.com/assafnativ/NativDebugging',
keywords = ['debugger', 'memory', 'patterns', 'research', 'lowlevel', 'native'],
license = "LGPLv3",
data_files = dataFiles)