-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
42 lines (35 loc) · 1.24 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "kde-material-you-colors"
dynamic = ["version"]
description = "Automatic Material You Colors Generator from your wallpaper for the Plasma Desktop"
readme = "README.md"
authors = [{name = "Luis Bocanegra", email = "[email protected]"}]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Desktop Environment :: K Desktop Environment (KDE) :: Themes",
"Environment :: X11 Applications :: KDE",
"Operating System :: POSIX :: Linux",
]
requires-python = ">=3.8"
dependencies = [
"dbus-python>=1.3.2",
"numpy>=1.20",
"pillow>=9.2.0",
"materialyoucolor>=2.0.8",
]
[tool.setuptools.dynamic]
version = {attr = "kde_material_you_colors.settings.__version__"}
[project.scripts]
kde-material-you-colors = "kde_material_you_colors.main:main"
[project.optional-dependencies]
cli = [
"pywal>=3.3.0"
]
[project.urls]
"Homepage" = "https://github.com/luisbocanegra/kde-material-you-colors"
"Repository" = "https://github.com/luisbocanegra/kde-material-you-colors"
"Bug Tracker" = "https://github.com/luisbocanegra/kde-material-you-colors/issues"