-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.2 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
# [tool.setuptools]
# py-modules = ["frozone"]
[tool.setuptools]
script-files = ["frozone/restore.sh"]
[project.scripts]
frozone = "frozone.__main__:cli"
[project]
name = "frozone"
version = "0.1.1"
authors = [
{ name="Adil Atalay Hamamcioglu", email="[email protected]" },
]
description = "A tool to save and restore the position of windows using wmctrl"
readme = "README.md"
requires-python = ">=3.2"
keywords = [
"window manager",
"window position",
"gnome",
"desktop",
"linux",
"wmctrl",
"x11",
"xorg",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Environment :: Console",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Topic :: Utilities",
"Topic :: Desktop Environment",
"Topic :: Desktop Environment :: Window Managers",
"Development Status :: 4 - Beta",
]
dependencies = [
"setuptools",
"Click",
]
[project.urls]
Homepage = "https://github.com/recoskyler/frozone"
Issues = "https://github.com/recoskyler/frozone/issues"