forked from helpsystems/pcapy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
78 lines (66 loc) · 2.21 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# $Id: setup.py 47 2010-08-25 19:07:28Z aweil $
import sys
import os
from setuptools import setup, Extension
PACKAGE_NAME = 'pcapy'
# You might want to change these to reflect your specific configuration
include_dirs = []
library_dirs = []
libraries = []
if sys.platform == 'win32':
# WinPcap include files
include_dirs.append(r'c:\devel\oss\wpdpack\Include')
# WinPcap library files
library_dirs.append(r'c:\devel\oss\wpdpack\Lib')
libraries = ['wpcap', 'packet', 'ws2_32']
else:
libraries = ['pcap', 'stdc++']
# end of user configurable parameters
macros = []
sources = ['pcapdumper.cc',
'bpfobj.cc',
'pcapobj.cc',
'pcap_pkthdr.cc',
'pcapy.cc'
]
if sys.platform == 'win32':
sources.append(os.path.join('win32', 'dllmain.cc'))
macros.append(('WIN32', '1'))
# HACK replace linker gcc with g++
from distutils import sysconfig
save_init_posix = sysconfig._init_posix
def my_init_posix():
save_init_posix()
g = sysconfig._config_vars
compiler = g['LDSHARED'].split()[0]
flags = g['LDSHARED'].split()[1:]
if compiler == 'gcc':
g['LDSHARED'] = ' '.join(['g++'] + flags)
elif compiler == 'clang':
g['LDSHARED'] = ' '.join(['clang++'] + flags)
print('my_init_posix: changing LDSHARED =',
repr(g['LDSHARED']))
print('to', repr(g['LDSHARED']))
sysconfig._init_posix = my_init_posix
setup(name=PACKAGE_NAME,
version="0.10.9",
url="https://github.com/CoreSecurity/pcapy",
author="CORE Security",
author_email="oss@coresecurity.com",
maintainer="CORE Security",
maintainer_email="oss@coresecurity.com",
description="Python pcap extension",
license="Apache modified",
ext_modules=[Extension(
name=PACKAGE_NAME,
sources=sources,
define_macros=macros,
include_dirs=include_dirs,
library_dirs=library_dirs,
libraries=libraries)],
# scripts=['tests/pcapytests.py', 'tests/96pings.pcap'],
data_files=[
(os.path.join('share', 'doc', PACKAGE_NAME),
['README', 'LICENSE', 'pcapy.html']),
('tests', ['tests/pcapytests.py', 'tests/96pings.pcap'])]
)