-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
executable file
·42 lines (36 loc) · 1.2 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
#!/usr/bin/python3
# coding: utf-8
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='CredSLayer',
version='0.1.3',
description='Extract credentials and other useful info from network captures',
long_description=long_description,
long_description_content_type='text/markdown',
keywords="credentials security networking extraction mining wireshark tshark dissector password",
license="GPLv3",
license_files=["LICENSE"],
author='ShellCode',
author_email='[email protected]',
url='https://github.com/ShellCode33/CredSLayer',
packages=find_packages(),
python_requires='>=3.5',
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
],
install_requires=[
"pyshark"
],
entry_points={
"console_scripts": [
"credslayer = credslayer.credslayer:main",
]
}
)