-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
73 lines (63 loc) · 1.52 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "kshift"
version = "1.2.0"
authors = [
{ name="Seth Mackert", email="[email protected]" },
]
description = "KDE Theme Shift"
license = { text = "GPL-3.0-or-later" }
readme = "README.md"
classifiers = [
"Programming Language :: Python",
# Development Status
"Development Status :: 5 - Production/Stable",
# Environment
"Environment :: X11 Applications :: KDE",
"Environment :: Console",
# Intended Audience
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
# Topic
"Topic :: Desktop Environment :: K Desktop Environment (KDE)",
"Topic :: Desktop Environment :: K Desktop Environment (KDE) :: Themes",
"Topic :: Utilities",
# Operating System
"Operating System :: POSIX :: Linux",
# License
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
keywords = [
"KDE",
"theme",
"desktop environment",
"automation",
"script",
"theme switching",
"Linux",
"color scheme",
"wallpaper",
"icon theme",
"Plasma",
"KDE Plasma",
"desktop customization",
"timers",
"systemd",
"sunrise sunset",
"cron replacement"
]
dependencies = [
"click",
"colorama",
"pydantic",
"PyYAML",
"Requests"
]
[project.urls]
"Homepage" = "https://github.com/justjokiing/kshift"
[project.scripts]
kshift = "kshift.main:cli"
[tool.pytest.ini_options]
pythonpath = ["src"]