-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (42 loc) · 1.36 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "upnpseudograph"
version = "0.0.0"
description = "A covert channel that clones UPNP devices and encodes messages in the icon list images."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["sample", "setuptools", "development"]
authors = [
{name = "David Cheeseman", email = "[email protected]" }
]
maintainers = [
{name = "David Cheeseman", email = "[email protected]" }
]
dependencies = [
"cryptography>=42.0.2,<43",
"Pillow>=9.0.1,<10",
"numpy>=1.21.6,<2",
"xmltodict>=0.13.0,<1",
"requests>=2.32.3,<3",
"Flask>=3.0.3,<4",
"websockets>=12.0,<13",
"flask-sock>=0.7.0,<1"
]
classifiers = [
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3 :: Only",
]
[project.urls]
"Homepage" = "https://github.com/nvuious/UPNPseudograph"
"Bug Reports" = "https://github.com/nvuious/UPNPseudograph/issues"
"Source" = "https://github.com/nvuious/UPNPseudograph"
[project.scripts]
upnpseudograph = "upnpseudograph.__main__:main"