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
|
#!/usr/bin/env python
"""
pcapdump setup
Install script for pcapdump
Usage: python setup.py install
This file is part of libbtbb
Copyright 2012-2013 Dominic Spill
"""
from distutils.core import setup
setup(
name = "pcapdump",
description = "A reader and dump utility for Pcap files",
author = "Joshua Wright",
url = "https://sourceforge.net/projects/libbtbb/",
license = "GPL",
version = '${PACKAGE_VERSION}',
package_dir = { '': '${CMAKE_CURRENT_SOURCE_DIR}' },
packages = ['pcapdump'],
classifiers=[
'Development Status :: 5 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Topic :: System :: Networking :: Monitoring',
],
)
|