This repository has been archived by the owner on Sep 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (46 loc) · 1.49 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
#!/usr/bin/env python
from setuptools import setup
setup(
name = 'INFSEC Package Viewer',
version = '1.0',
description = 'A simple web application to monitor unencrypted HTTP traffic with Wireshark.',
url = 'https://github.com/shieldwed/package-viewer',
author = 'INFSEC 2016 Team 84',
author_email = '[email protected]',
license = 'MIT',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Programming Language :: JavaScript',
'Topic :: Education',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Security :: Cryptography',
'Topic :: System :: Networking',
],
packages = [
'packageviewer',
],
package_data = {
'packageviewer' : [
'templates/*.html',
'static/*',
],
},
install_requires = [
'Flask>=0.10.1,<0.11',
'Flask-SocketIO>=2.3,<3',
'gevent-websocket',
'pyshark',
],
)