-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (46 loc) · 1.61 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
from setuptools import setup
setup(
name="mRemoteNGpasswordsStealer",
version="1.0.1",
py_modules=["mRemoteNGpasswordsStealer"],
install_requires=["PythonToolsKit", "pycryptodome"],
author="Maurice Lambert",
author_email="[email protected]",
maintainer="Maurice Lambert",
maintainer_email="[email protected]",
description="This module steals mRemoteNG passwords.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
include_package_data=True,
url="https://github.com/mauricelambert/mRemoteNGpasswordsStealer",
project_urls={
"Documentation": "https://mauricelambert.github.io/info/python/security/mRemoteNGpasswordsStealer.html",
"Executable": "https://mauricelambert.github.io/info/python/security/mRemoteNGpasswordsStealer.pyz",
},
classifiers=[
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Natural Language :: English",
"Topic :: Security",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Operating System :: Microsoft :: Windows",
],
entry_points={
"console_scripts": [
"RemotPasswordsStealer = mRemoteNGpasswordsStealer:main"
],
},
python_requires=">=3.8",
keywords=[
"mRemoteNG",
"Passwords",
"Decrypt",
"Steal",
"Recovery",
"Security",
],
platforms=["Windows"],
license="GPL-3.0 License",
)