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-2013 Dominic Spill 11""" 12 13from distutils.core import setup 14 15setup( 16 name = "pcapdump", 17 description = "A reader and dump utility for Pcap files", 18 author = "Joshua Wright", 19 url = "https://sourceforge.net/projects/libbtbb/", 20 license = "GPL", 21 version = '${PACKAGE_VERSION}', 22 package_dir = { '': '${CMAKE_CURRENT_SOURCE_DIR}' }, 23 packages = ['pcapdump'], 24 classifiers=[ 25 'Development Status :: 5 - Beta', 26 'Intended Audience :: Developers', 27 'License :: OSI Approved :: GNU General Public License (GPL)', 28 'Programming Language :: Python', 29 'Operating System :: OS Independent', 30 'Topic :: System :: Networking :: Monitoring', 31 ], 32) 33