-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1.2 KB
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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.backends._legacy:_Backend"
[project]
name = "salva-godinez"
dynamic = ["version"]
description = "Navaja suiza para oficinistas — rescate de archivos, impresoras, USB, sistema y mas"
readme = "README.md"
license = "GPL-3.0-only"
requires-python = ">=3.10"
authors = [
{ name = "El_Becerril" },
]
keywords = ["office", "windows", "tools", "recovery", "printer"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
]
dependencies = [
"rich>=13.7.0",
"pypdf>=4.0.0",
"openpyxl>=3.1.0",
"Pillow>=10.0.0",
]
[project.scripts]
salva-godinez = "main:main"
[tool.setuptools.dynamic]
version = {attr = "main.__version__"}
[tool.setuptools]
py-modules = ["main", "config", "utils"]
packages = ["searchers", "reporting", "tools"]