forked from HarmJ0y/ImpDump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (21 loc) · 808 Bytes
/
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
#!/usr/bin/python
import glob
import os
from distutils.core import setup
PACKAGE_NAME = "ImpDump"
setup(name = PACKAGE_NAME,
version = "0.0.1",
description = "Parser / Decryptor for Impacket esentutl.py Output",
url = "https://github.com/HarmJ0y/ImpDump",
author = "HarmJ0y",
author_email = "[email protected]",
maintainer = "HarmJ0y",
maintainer_email = "[email protected]",
license = "GPLv2",
long_description = 'Parser / Decryptor for Impacket esentutl.py Output',
platforms = ["Unix","Windows"],
packages = ['framework', 'framework.win32'],
scripts = ['impdump_extract.sh', 'impdump.py'],
data_files = [(os.path.join('share', 'doc', PACKAGE_NAME), ['README.md', 'LICENSE'])],
requires=['impacket (>=0.9.13)'],
)