forked from fortra/impacket
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 1.49 KB
/
Copy pathsetup.py
File metadata and controls
26 lines (23 loc) · 1.49 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
import glob
import os
from distutils.core import setup
PACKAGE_NAME = "impacket"
setup(name=PACKAGE_NAME,
version="0.9.14-dev",
description="Network protocols Constructors and Dissectors",
url="http://corelabs.coresecurity.com/index.php?module=Wiki&action=view&type=tool&name=Impacket",
author="CORE Security Technologies",
author_email="oss@coresecurity.com",
maintainer="Alberto Solino",
maintainer_email="bethus@gmail.com",
license="Apache modified",
long_description='Impacket is a collection of Python classes focused on providing access to network packets. Impacket allows Python developers to craft and decode network packets in simple and consistent manner.',
platforms=["Unix","Windows"],
packages=['impacket', 'impacket.dcerpc', 'impacket.examples', 'impacket.dcerpc.v5', 'impacket.dcerpc.v5.dcom', 'impacket.krb5'],
scripts=glob.glob(os.path.join('examples', '*.py')),
data_files=[(os.path.join('share', 'doc', PACKAGE_NAME), ['README', 'LICENSE'] + glob.glob('doc/*')),
(os.path.join('share', 'doc', PACKAGE_NAME, 'testcases', 'dot11'),glob.glob('impacket/testcases/dot11/*')),
(os.path.join('share', 'doc', PACKAGE_NAME, 'testcases', 'ImpactPacket'),glob.glob('impacket/testcases/ImpactPacket/*')),
(os.path.join('share', 'doc', PACKAGE_NAME, 'testcases', 'SMB_RPC'),glob.glob('impacket/testcases/SMB_RPC/*'))],
requires=['pycrypto (>=2.6)', 'pyasn1 (>=0.1.7)'],
)