-
Notifications
You must be signed in to change notification settings - Fork 67
/
pyproject.toml
123 lines (115 loc) · 2.92 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
117
118
119
120
121
122
123
[tool.poetry]
name = "recoverpy"
version = "2.1.9"
description = "A TUI to recover overwritten or deleted data."
authors = ["PabloLec <[email protected]>"]
license = "GPL-3.0 License"
readme = "README.md"
homepage = "https://github.com/PabloLec/recoverpy"
repository = "https://github.com/PabloLec/recoverpy"
documentation = "https://github.com/PabloLec/recoverpy#readme"
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",
"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",
]
[tool.poetry.scripts]
recoverpy = "recoverpy.__init__:main"
[tool.poetry.dependencies]
python = "^3.8.1"
textual = "0.79.1"
[tool.poetry.dev-dependencies]
coverage = "^7.6.1"
pytest = "^8.3.3"
pylint = "^3.2.7"
isort = "^5.13.2"
black = "^24.8"
flake8 = "^7.1.1"
pre-commit = "^3.5.0"
flake8-bandit = "^4.1.1"
flake8-bugbear = "^24.10.31"
flake8-builtins = "^2.5.0"
flake8-comprehensions = "^3.15.0"
darglint = "^1.8.1"
flake8-docstrings = "^1.7.0"
flake8-isort = "^6.1.1"
flake8-pytest-style = "^2.0.0"
flake8-mutable = "^1.2.0"
flake8-html = "^0.4.1"
flake8-simplify = "^0.21.0"
flake8-aaa = "^0.17.0"
pytest-mock = "3.14.0"
pytest-cov = "^5.0.0"
coverage-badge = "^1.1.2"
mypy = "^1.13"
types-PyYAML = "^6.0.12"
[tool.poetry.group.dev.dependencies]
pytest-asyncio = ">=0.20.3,<0.25.0"
ruff = ">=0.5.1,<0.7.5"
[tool.isort]
profile = "black"
[tool.mypy]
python_version = 3.8
ignore_missing_imports = "true"
disallow_untyped_calls = "false"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"incremental",
]