-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
75 lines (67 loc) · 1.84 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sittagger"
dynamic = ["version"]
description = "Image viewer with user-labels tag database"
readme = "README.md"
license = "WTFPL"
requires-python = ">=3.4"
keywords = [
"browser",
"database",
"image",
"label",
"labelling",
"photo",
"python",
"tag",
"tagging",
"viewer",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: End Users/Desktop",
"License :: Public Domain",
"Topic :: Desktop Environment :: File Managers",
"Topic :: Multimedia :: Graphics :: Viewers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"PyQt6",
"pyxdg",
"vignette",
]
[[project.authors]]
name = "Hg"
email = "[email protected]"
[project.scripts]
sit-tagger-cli = "sittagger.cli:main"
[project.gui-scripts]
sit-tagger = "sittagger.app:main"
[project.urls]
Homepage = "https://indigo.re/sit-tagger/"
Project = "https://gitlab.com/hydrargyrum/sit-tagger"
PyPI = "https://pypi.org/project/sittagger/"
[tool.hatch.version]
path = "sittagger/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/sittagger",
"/sittagger.png",
"/sittagger.desktop",
]
[tool.hatch.build.targets.wheel.shared-data]
"sittagger.png" = "share/icons/hicolor/128x128/apps/sittagger.png"
"sittagger.desktop" = "share/applications/sittagger.desktop"