-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathsetup.py
42 lines (40 loc) · 1.06 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
# 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="1.0",
author="Hatching B.V.",
author_email="[email protected]",
packages=[
"httpreplay",
],
url="https://github.com/hatching/httpreplay",
license="GPLv3",
description="Properly interpret, decrypt, and replay pcap files",
install_requires=[
"dpkt>=1.9.6, <1.10",
"tlslite-ng==0.7.6",
"click>=7.0.0, <7.2",
"brotli==1.0.9, <1.1",
"future"
],
python_requires=">=3.6",
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",
]
},
)