Skip to content

Commit 1c7040a

Browse files
committed
last fix
1 parent c80f924 commit 1c7040a

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
venv
22
__pycache__
3+
.pytest_cache

pyproject.toml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,31 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "exiftoolgui"
7-
version = "0.1.3"
7+
version = "0.1.4"
88
authors = [
99
{ name = "Ciprian Mandache", email = "psyb0t@51k.eu" }, # Role: Orchestrator
1010
{ name = "Claude 3.5 Sonnet" }, # Role: Developer
1111
]
1212
description = "A GUI application for ExifTool built with Claude 3.5 Sonnet, designed to work on Linux and macOS."
1313
readme = "README.md"
14-
requires-python = ">=3.6"
14+
requires-python = ">=3.7"
1515
classifiers = [
1616
"Programming Language :: Python :: 3",
17+
"Programming Language :: Python :: 3.7",
18+
"Programming Language :: Python :: 3.8",
19+
"Programming Language :: Python :: 3.9",
20+
"Programming Language :: Python :: 3.10",
21+
"Programming Language :: Python :: 3.11",
1722
"Operating System :: MacOS",
1823
"Operating System :: POSIX :: Linux",
1924
]
2025

2126
[project.urls]
22-
Homepage = "https://github.com/psyb0t/ezpyai"
23-
Issues = "https://github.com/psyb0t/ezpyai/issues"
27+
Homepage = "https://github.com/psyb0t/exiftoolgui"
28+
Issues = "https://github.com/psyb0t/exiftoolgui/issues"
29+
30+
[project.scripts]
31+
exiftoolgui = "exiftoolgui.exiftoolgui:ExifToolGUI.main"
2432

2533
[tool.hatch.build.targets.wheel]
2634
packages = ["src/exiftoolgui"]

src/exiftoolgui/__main__.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)