-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpyproject.toml
39 lines (34 loc) · 1 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "wpgtk.data.config.__version__"}
[tool.setuptools.packages.find]
exclude = ["completions"]
[project]
name = "wpgtk"
dynamic = ["version"]
requires-python = ">=3.5"
dependencies = [
"Pillow>=4.2.1",
"pywal>=3.3.0",
]
readme = "README.md"
description = "GTK+ theme/wallpaper manager which uses pywal as its core"
authors = [
{name = "Fernando Vásquez", email = "[email protected]"},
]
classifiers = [
"Environment :: X11 Applications",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
license = {text = "GPL2"}
[project.urls]
Homepage = "https://github.com/deviantfero/wpgtk"
[project.scripts]
wpg = "wpgtk.__main__:main"