-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.37 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 = ["setuptools ~= 75.5.0", "setuptools-scm ~= 8.1.0"]
build-backend = "setuptools.build_meta"
[project]
name = "io.github.mcarlos101.file-renamer"
authors = [{name = "Carlos"}]
description = "Rename files using a GUI desktop app for Linux & Windows"
readme = "README.md"
requires-python = ">=3.11"
keywords = [
"app", "gui", "rename", "rename-files", "batch-rename-files", "renamer",
"linux-desktop", "ubuntu", "fedora", "windows-desktop", "macos-desktop",
"pyside6", "qt-creator"
]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Intended Audience :: End Users/Desktop",
"Topic :: Utilities",
"Programming Language :: Python",
"Operating System :: POSIX :: Linux",
"Topic :: Desktop Environment :: Gnome",
"Topic :: Desktop Environment :: K Desktop Environment (KDE)",
"Operating System :: Microsoft :: Windows :: Windows 11",
]
dependencies = [
"Unidecode",
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "file_renamer.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[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"