-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (38 loc) · 1.19 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/file_renamer"]
[tool.hatch.build.targets.wheel.force-include]
# none
[project]
name = "file-renamer"
authors = [
{ name="Carlos"},
]
description = "Rename files using a GUI desktop app for Linux & Windows. macOS not yet tested."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"PySide6==6.7.0",
"PySide6-Addons==6.7.0",
"PySide6-Essentials==6.7.0",
"shiboken6==6.7.0",
"Unidecode==1.3.8",
]
keywords = ["app", "gui", "ubuntu", "fedora", "rename", "qt", "qcreator", "windows-desktop", "rename-files", "linux-desktop", "batch-rename-files", "renamer", "macos-desktop", "pyside6"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
dynamic = [
"version",
]
[tool.hatch.version]
path = "src/file_renamer/version.py"
[project.scripts]
file-renamer = "file_renamer.cli:start_app"
[project.urls]
Homepage = "https://github.com/mcarlos101/file-renamer"
Repository = "https://github.com/mcarlos101/file-renamer.git"