xref: /libbtbb/python/pcaptools/setup.py (revision e25b118a40ed6b5c2ea76bae29e388cfbc2f6e92)
1#!/usr/bin/env python
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://sourceforge.net/projects/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