xref: /libbtbb/python/pcaptools/setup.py (revision 8a8fc94e322282f43246b109ed9d785c28f21106)
1#!/usr/bin/env python3
2"""
3pcapdump setup
4
5Install script for pcapdump
6
7Usage: python setup.py install
8
9This file is part of libbtbb
10Copyright 2012 Dominic Spill
11"""
12
13from distutils.core import setup
14
15setup(
16    name        = "pcapdump",
17    version     = "0.8",
18    description = "A reader and dump utility for Pcap files",
19    author      = "Joshua Wright",
20    url         = "https://github.com/greatscottgadgets/libbtbb",
21    license     = "GPL",
22    packages    = ['pcapdump'],
23    classifiers=[
24        'Development Status :: 5 - Beta',
25        'Intended Audience :: Developers',
26        'License :: OSI Approved :: GNU General Public License (GPL)',
27        'Programming Language :: Python',
28        'Operating System :: OS Independent',
29        'Topic :: System :: Networking :: Monitoring',
30    ],
31)
32