scripts/libbtbb-2015-10-R1/python/pcaptools/setup.py.in

33 lines
914 B
Python
Raw Normal View History

2016-12-17 04:18:30 -05:00
#!/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',
],
)