File: setup.py.in

package info (click to toggle)
libbtbb 2015.09.R2-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,396 kB
  • ctags: 2,047
  • sloc: ansic: 9,645; python: 922; sh: 170; makefile: 143; ruby: 21
file content (32 lines) | stat: -rwxr-xr-x 914 bytes parent folder | download | duplicates (3)
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',
    ],
)