-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 747 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (28 loc) · 747 Bytes
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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "careless-whisper"
version = "0.1.0"
description = "A read receipt exploit that takes advantage of timing in end-to-end encrypted messaging applications to infer information about recipient activity"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "LICENSE"}
authors = [
{name = "ctrlsam"}
]
dependencies = [
"neonize",
"pydantic-settings",
"prometheus-client",
"uniplot", # might want to move to optional for cli
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"black",
"flake8",
"mypy",
]
[project.urls]
Homepage = "https://github.com/ctrlsam/careless-whisper-python"