forked from faust/tcpextract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.45 KB
/
setup.py
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
33
34
35
36
37
from distutils.core import setup
with open('README.rst') as file:
long_description = file.read()
setup(name='tcpextract',
version='1.1',
description='Extract files from captured TCP sessions. Support live streams and pcap files.',
author='Faust',
author_email='faust@abnorm.org',
url='https://www.abnorm.org/projects/tcpextract/',
download_url='https://github.com/faust/tcpextract/downloads',
license='GNU General Public License v3 or later (GPLv3+)',
long_description=long_description,
keywords='pcap sniff capture analyzer',
packages=['TcpExtract', 'TcpExtract.modules'],
scripts=['scripts/tcpextract'],
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Education :: Testing',
'Topic :: Internet :: Log Analysis',
'Topic :: Security',
'Topic :: Software Development :: Testing',
'Topic :: System :: Networking :: Monitoring']
)