-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (51 loc) · 1.77 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "kiyoi_image_viewer"
description = "Kiyoi Image Viewer"
version = "0.1.2"
readme = "README.md"
keywords = [
"Image Viewer", "Qt",
]
license = {text = "LICENSE.txt"}
authors = [{name = "William Kappler", email = "WilliamKappler@gmail.com"}]
dependencies = [
"PySide6",
"pyperclip",
"pillow",
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Artistic Software",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Viewers",
"Topic :: Utilities",
"Environment :: X11 Applications",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: Microsoft :: Windows :: Windows 7",
"Operating System :: Microsoft :: Windows :: Windows 8",
"Operating System :: Microsoft :: Windows :: Windows 8.1",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: Linux",
]
[project.scripts]
kiyoi_winreg_install = "kiyoi_image_viewer:kiyoi_winreg_install"
kiyoi_winreg_uninstall = "kiyoi_image_viewer:kiyoi_winreg_uninstall"
[project.gui-scripts]
kiyoi_image_viewer = "kiyoi_image_viewer:kiyoi_run"
[project.urls]
Github = "https://github.com/WilliamKappler/kiyoi/"
Sourceforge = "https://sourceforge.net/projects/kiyoi-image-viewer/"
[tool.setuptools.package-data]
kiyoi_image_viewer = ["lang.template", "*.lang", "*.syn", "*.png", "kiyoi.svg"]
[tool.setuptools.packages.find]
where = ["src"]