Skip to content

Commit 1923a69

Browse files
committed
Added setup.py script
1 parent fb92276 commit 1923a69

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

setup.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
from setuptools import setup
2+
3+
setup(
4+
name='pcap2curl',
5+
6+
version='0.1',
7+
8+
description='Extract HTTP requests from pcap and turn them into cURL',
9+
10+
url='https://github.com/jullrich/pcap2curl',
11+
12+
author='Johannes Ullrich',
13+
14+
license='GNU',
15+
16+
install_requires=['scapy']
17+
18+
)

0 commit comments

Comments
 (0)