-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
41 lines (39 loc) · 1.33 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
# File from pcap-splitter project
# Copyright (C) 2019 Santiago Hernandez Ramos <[email protected]>
# For more information about the project: https://github.com/shramos/pcap-splitt
from setuptools import setup
import setuptools
setup(
name="pcap_splitter",
version="1.0.0",
license="GNU",
description="Pcap-splitter allows you to split a _.pcap_ file into subsets of _.pcap_ files based on sessions, flows, ip addresses, number of bytes, number of network packets...",
platforms=["Linux", "Windows", "MacOS"],
url="https://github.com/shramos/pcap-splitter",
author="Santiago Hernandez Ramos",
author_email="[email protected]",
packages=setuptools.find_packages(),
keywords=[
'pcap',
'split',
'network',
'packet',
'modification',
'manipulation',
'modify',
'flows',
'sessions',
'ip',
'divide',
],
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",
],
)