-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
75 lines (60 loc) · 2.07 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Copyright (c) 2019-2024 Riverbed Technology, Inc.
#
# This software is licensed under the terms and conditions of the MIT License
# accompanying the software ("License"). This software is distributed "AS IS"
# as set forth in the License.
"""
steelscript.wireshark
====================
Extract metrics from pcap files
"""
from glob import glob
from setuptools import setup, find_packages
setup_args = {
'name': 'steelscript.wireshark',
'version': '24.10.1',
'author': 'Riverbed Technology',
'author_email': 'eng-github@riverbed.com',
'url': 'http://pythonhosted.org/steelscript',
'license': 'MIT',
'description': 'Extract metrics from pcap files',
'long_description': """SteelScript for Wireshark
=========================
SteelScript is a collection of libraries and scripts in Python and JavaScript
for interacting with Riverbed Technology devices.
For a complete guide to installation, see:
http://pythonhosted.org/steelscript/
""",
'packages': find_packages(exclude=('gitpy_versioning',)),
'zip_safe': False,
'install_requires': (
'steelscript>=24.2.0',
'python-dateutil',
'tzlocal',
'pytz'
),
'extras_require': None,
'test_suite': '',
'include_package_data': True,
'entry_points': {
'portal.plugins': [
'wireshark = steelscript.wireshark.appfwk.plugin:Plugin'
],
},
'data_files': (
('share/doc/steelscript/docs/wireshark', glob('docs/*')),
('share/doc/steelscript/examples/wireshark', glob('examples/*')),
),
'python_requires': '>3.9.0',
'classifiers': [
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development',
'Topic :: System :: Networking',
],
}
setup(**setup_args)