-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
112 lines (99 loc) · 2.63 KB
/
pyproject.toml
File metadata and controls
112 lines (99 loc) · 2.63 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[project]
name = "reskinner"
requires-python = ">=3.7"
description = "Instantaneous theme changing for PySimpleGUI and FreeSimpleGUI windows."
version = "4.6.0"
authors = [{ name = "Divine U. Afam-Ifediogor" }]
license = { file = "LICENSE" }
readme = "./res/DESCRIPTION.md"
classifiers = [
"Development Status :: 6 - Mature",
"Framework :: PySimpleGUI",
"Framework :: PySimpleGUI :: 4",
"Framework :: PySimpleGUI :: 5",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
keywords = [
"PySimpleGUI",
"FreeSimpleGUI",
"reskin",
"realtime",
"theme",
"color",
"gui",
]
dependencies = [
"colour>=0.1.5",
'StrEnum; python_version < "3.11"',
'importlib-metadata; python_version < "3.8"',
'typing-extensions; python_version < "3.8"',
]
[project.urls]
"Homepage" = "https://github.com/definite-d/reskinner/"
"Bug Tracker" = "https://github.com/definite-d/reskinner/issues/"
[project.optional-dependencies]
psg = [
"PySimpleGUI>=4.60.3.96",
]
fsg = [
"FreeSimpleGUI>=5.0.0",
]
[tool.uv]
package = true
conflicts = [[{ extra = "fsg" }, { extra = "psg" }]]
[[tool.uv.index]]
name = "pysimplegui"
url = "https://pysimplegui.net/install"
explicit = true
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[tool.uv.sources]
reskinner = { workspace = true }
[build-system]
requires = ["uv_build>=0.9.3,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"bumpver",
"freesimplegui>=5.2.0.post1",
"isort",
"ruff",
]
[tool.ruff]
target-version = "py37"
line-length = 88
[tool.ruff.lint]
select = ["UP"]
extend-select = ["E", "F", "W", "I"]
ignore = [
"UP006", # Use `list` instead of `List`
"UP007", # Use `X | Y` instead of Union/Optional
"UP035", # typing imports deprecated in 3.9+
]
[tool.bumpver]
current_version = "4.6.0"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
tag_message = "{new_version}"
tag_scope = "default"
pre_commit_hook = ""
post_commit_hook = ""
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']