-
Notifications
You must be signed in to change notification settings - Fork 246
/
pyproject.toml
84 lines (76 loc) · 2.42 KB
/
pyproject.toml
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
76
77
78
79
80
81
82
83
84
[build-system]
# can't use setuptools-scm for docker builds w/o a git tree
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyrdp-mitm"
description = "Remote Desktop Protocol (RDP) Monster-in-the-Middle tool and Python library"
readme = "README.md"
version = "2.1.1.dev0"
requires-python = ">=3.7"
authors = [
{ name = "Olivier Bilodeau", email = "obilodeau@gosecure.net" },
{ name = "Émilio Gonzalez" },
{ name = "Francis Labelle" },
{ name = "Alexandre Beaulieu" },
]
keywords = ["RDP", "MITM", "interception", "attack", "pentest", "honeypots"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: X11 Applications :: Qt",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Communications",
"Topic :: Security",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
'appdirs>=1,<2',
'cryptography>=3.3.2,<42',
'namesgenerator>=0.3,<1',
'progressbar2>=3.20,<5',
'pyasn1>=0,<1',
'pycryptodome>=3.5,<4',
'pyopenssl>=19,<24',
'pytz',
'rsa>=4,<5',
'scapy>=2.4,<3',
'service_identity>=18',
'twisted>=23'
]
[project.optional-dependencies]
full = [
'wheel>=0.34.2',
'av>=8,<12',
'PySide6>=6.3,<7',
'qimage2ndarray>=1.6,<2',
'py-notifier>=0.5.0',
'WinToaster>=0.1.0;platform_system=="Windows"',
]
[project.urls]
Homepage = "https://github.com/GoSecure/pyrdp"
[project.scripts]
pyrdp-clonecert = "pyrdp.bin.clonecert:main"
pyrdp-mitm = "pyrdp.bin.mitm:main"
pyrdp-player = "pyrdp.bin.player:main"
pyrdp-convert = "pyrdp.bin.convert:main"
[project.gui-scripts]
pyrdp-player-gui = "pyrdp.bin.player:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["pyrdp*", "twisted*"]
[tool.setuptools.package-data]
"*" = ["*.txt", "*.ini", "twisted/*.py"]
[tool.ruff.extend-per-file-ignores]
"__init__.py" = ["F401"]