-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
50 lines (41 loc) · 1.63 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
from setuptools import setup
setup(
name="PasswordsSniffer",
version="0.0.2",
py_modules=["PasswordsSniffer"],
install_requires=["scapy"],
author="Maurice Lambert",
author_email="[email protected]",
maintainer="Maurice Lambert",
maintainer_email="[email protected]",
description="This module sniff username and password of unprotected protocols.",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/mauricelambert/PasswordsSniffer",
project_urls={
"Executable": "https://mauricelambert.github.io/info/python/security/PasswordsSniffer.pyz",
"Documentation": "https://mauricelambert.github.io/info/python/security/PasswordsSniffer.html",
},
download_url="https://mauricelambert.github.io/info/python/security/PasswordsSniffer.pyz",
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python",
"Natural Language :: English",
"Development Status :: 5 - Production/Stable",
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
"Environment :: Console",
"Topic :: System :: Networking",
],
keywords=["PasswordsSniffer"],
platforms=['Windows', 'Linux', "MacOS"],
license="GPL-3.0 License",
entry_points = {
'console_scripts': [
'PasswordsSniffer = PasswordsSniffer:main'
],
},
python_requires='>=3.6',
)