generated from hsbasu/template-repo
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
54 lines (47 loc) · 1.41 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
[build-system]
build-backend = 'mesonpy'
requires = [
"meson >= 1.3.0",
"meson-python >= 0.14.0",
]
[project]
name = "theme-manager"
authors = [
{name = "Himadri Sekhar Basu", email = "[email protected]"},
]
description = "GUI to set different theme colour and mode (dark/light) variants on linux based on time."
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
requires-python = ">=3.6"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved",
" :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Accessories",
]
dependencies = [
"configobj",
"PyGObject",
"setproctitle",
"tldextract"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://hsbasu.github.io/theme-manager"
Repository = "https://www.github.com/mamolinux/theme-manager.git"
Issues = "https://www.github.com/mamolinux/theme-manager/issues"
# [project.scripts]
# theme-manager = "ThemeManager.main:start_TM"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*VERSION", "*.ui"]
[tool.setuptools.dynamic]
version = {file = "src/ThemeManager/VERSION"}
# [tool.meson-python.args]
# setup = ['--default-library=static']