forked from CAPESandbox/httpreplay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (37 loc) · 1.01 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
# Copyright (C) 2015-2018 Jurriaan Bremer <jbr@cuckoo.sh>
# 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, find_packages
setup(
name="HTTPReplay",
version="0.3",
author="Hatching B.V.",
author_email="info@hatching.io",
packages=find_packages(),
url="https://github.com/hatching/httpreplay",
license="GPLv3",
description="Properly interpret, decrypt, and replay pcap files",
install_requires=[
"dpkt>=1.9.2",
"tlslite-ng==0.7.6",
"click",
"brotli==1.0.7",
"future",
],
extras_require={
"mitmproxy": [
"mitmproxy==4.0.4",
],
"dev": [
"mock==2.0.0",
"pytest>=4.4.1"
]
},
entry_points={
"console_scripts": [
"httpreplay = httpreplay.main:httpreplay",
"pcap2mitm = httpreplay.main:do_pcap2mitm",
]
},
)