-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpyproject.toml
116 lines (109 loc) · 2.77 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[project]
authors = [
{ name = "PabloLec", email = "pablolec@pm.me" },
]
license = { text = "GPL-3.0 License" }
requires-python = "<4.0.0,>=3.8.1"
dependencies = [
"textual==1.0.0",
]
name = "recoverpy"
version = "2.2.0"
description = "A TUI to recover overwritten or deleted data."
readme = "README.md"
keywords = [
"data",
"recovery",
"search",
"cli",
"console",
"cui",
"tui",
"ncurses",
"terminal",
"cybersec",
"cybersecurity",
"security",
"pentesting",
"pentest",
"forensics",
"forensic",
"hack",
"hacking",
"data recovery",
"data recovery tool",
"grep",
"linux",
"unix",
"education",
"teaching",
"training",
"teach",
"learn",
"textual",
"asyncio",
"async",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
"Environment :: Console :: Curses",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Intended Audience :: Education",
"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.13",
"Topic :: Security",
"Topic :: System :: Filesystems",
"Topic :: System :: Archiving :: Backup",
"Topic :: System :: Recovery Tools",
"Topic :: System :: Shells",
"Topic :: System :: Systems Administration",
"Topic :: Terminals",
"Topic :: Utilities",
"Typing :: Typed",
"Framework :: AsyncIO",
]
[project.urls]
homepage = "https://github.com/PabloLec/recoverpy"
repository = "https://github.com/PabloLec/recoverpy"
documentation = "https://github.com/PabloLec/recoverpy#readme"
[project.scripts]
recoverpy = "recoverpy.__init__:main"
[dependency-groups]
dev = [
"isort>=5.13.2",
"pyright>=1.1.392.post0",
"pytest-asyncio>=0.24.0",
"pytest>=8.3.4",
"ruff>=0.9.3",
"pytest-mock>=3.14.0",
"pytest-cov>=5.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[tool.pyright]
include = ["recoverpy"]
exclude = ["recoverpy/ui/widgets/directory_tree.py"]
typeCheckingMode = "strict"
reportUnknownArgumentType = "none"
reportUnknownMemberType = "none"
[tool.pytest.ini_options]
markers = [
"incremental",
]
asyncio_default_fixture_loop_scope = "function"