-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.44 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
[project]
name = "FotoKilof"
description = "Nice gui for ImageMagick and Pillow"
authors = [
{ name = "Tomasz Łuczak", email = "[email protected]" },
]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"FindSystemFontsFilename",
"pillow",
"requests",
"ttkbootstrap",
"wand",
"pywin32; platform_system=='Windows'",
"pyperclipimg; platform_system=='Linux' or platform_system=='Darwin' or platform_system=='Windows'",
]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"License :: OSI Approved :: MIT License",
]
dynamic = ["version"]
[project.urls]
Source = "https://github.com/TeaM-TL/FotoKilof/"
Tracker = "https://github.com/TeaM-TL/FotoKilof/issues/"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = { attr = "fotokilof.version.__version__" }
[tool.setuptools.packages.find]
include = ["fotokilof*"]
[project.gui-scripts]
fotokilof = "fotokilof:__main__"
[project.entry-points]
gui_scripts = {fotokilof = "fotokilof:__main__"}