forked from hatching/httpreplay
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (35 loc) · 927 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
26
27
28
29
30
31
32
33
34
35
36
37
# Copyright (C) 2015-2018 Jurriaan Bremer <[email protected]>
# Copyright (C) 2019 Hatching B.V.
# This file is part of HTTPReplay - http://jbremer.org/httpreplay/
# See the file 'LICENSE' for copying permission.
from setuptools import setup
setup(
name="HTTPReplay",
version="0.2.6",
author="Hatching B.V.",
author_email="[email protected]",
packages=[
"httpreplay",
],
license="GPLv3",
description="Properly interpret, decrypt, and replay pcap files",
install_requires=[
"dpkt==1.8.7",
"tlslite-ng==0.6.0",
"click>=6.6, <7",
],
extras_require={
"mitmproxy": [
"mitmproxy==0.18.2",
],
"dev": [
"pytest>=4.4.1"
]
},
entry_points={
"console_scripts": [
"httpreplay = httpreplay.main:httpreplay",
"pcap2mitm = httpreplay.main:do_pcap2mitm",
]
},
)