-
Notifications
You must be signed in to change notification settings - Fork 58
/
setup.py
executable file
·62 lines (58 loc) · 1.63 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
# File from polymorph project
# Copyright (C) 2018 Santiago Hernandez Ramos <[email protected]>
# For more information about the project: https://github.com/shramos/polymorph
from setuptools import setup, find_packages
import platform
REQUIRES = [
'scapy',
'pyshark',
'dill',
'hexdump',
'termcolor',
'construct',
'netaddr',
'prompt-toolkit',
'texttable',
'dateutils'
]
if platform.system() == "Linux":
SCRIPTS = ['bin/polymorph']
REQUIRES += ['NetfilterQueue']
elif platform.system() == "Windows":
SCRIPTS = ['bin/polymorph.bat', 'bin/polymorph']
REQUIRES += ['pydivert']
setup(
name="polymorph",
version="2.0.6",
packages=find_packages('.'),
scripts=SCRIPTS,
license="MIT",
description="A real time network packet manipulation framework",
platforms=["Linux", "Windows"],
url="https://github.com/shramos/polymorph",
author="Santiago Hernandez Ramos",
author_email="[email protected]",
install_requires=REQUIRES,
keywords=[
'network',
'packet',
'modification',
'real-time',
'real',
'time',
'manipulation',
'modify',
'on-the-fly',
'crafter'
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)